Re: [llvm-commits] CVS: llvm-test/Makefile.programs RunSafely.sh TimedExec.sh

2007-05-03 Thread Evan Cheng
That's how I am running my nightly tests now. You can add a couple of lines for your target. e.g. ifeq ($(TARGET_ARCH),ARM4) LLCBETAOPTION := .. endif It's just a makefile. Easy to hack. :-) Evan On May 3, 2007, at 3:00 PM, Lauro Ramos Venancio wrote: > I think we should coordinate the work.

Re: [llvm-commits] CVS: llvm-test/Makefile.programs RunSafely.sh TimedExec.sh

2007-05-03 Thread Lauro Ramos Venancio
I think we should coordinate the work. We are doing the same thing in different ways. I will try merge the changes. @@ -229,6 +237,9 @@ ifeq ($(ARCH),Sparc) LLCBETAOPTION := -enable-sparc-v9-insts endif +ifeq ($(TARGET_ARCH),ARM) +LLCBETAOPTION := -march=thumb +endif I think this is not a

[llvm-commits] CVS: llvm-test/Makefile.programs RunSafely.sh TimedExec.sh

2007-05-03 Thread Evan Cheng
Changes in directory llvm-test: Makefile.programs updated: 1.264 -> 1.265 RunSafely.sh updated: 1.27 -> 1.28 TimedExec.sh updated: 1.5 -> 1.6 --- Log message: Added support to do remote execution using rsh. e.g. make TARGET_LLCFLAGS="-mcpu=armcpuname" TARGET_ARCH=arm REMOTE_HOST=board REMOTE_U

[llvm-commits] CVS: llvm-test/Makefile.programs RunSafely.sh

2006-11-25 Thread Reid Spencer
Changes in directory llvm-test: Makefile.programs updated: 1.243 -> 1.244 RunSafely.sh updated: 1.22 -> 1.23 --- Log message: Move an error message out of multiple locations in the Makefile and into one location in RunSafely.sh. Also, if exit code checking has been enabled, emit the exit code t

[llvm-commits] CVS: llvm-test/Makefile.programs RunSafely.sh RunSafelyAndStable.sh

2006-11-25 Thread Reid Spencer
Changes in directory llvm-test: Makefile.programs updated: 1.242 -> 1.243 RunSafely.sh updated: 1.21 -> 1.22 RunSafelyAndStable.sh updated: 1.5 -> 1.6 --- Log message: Fix the way exit code handling was being done so that it actually works. Previously the exit code of "awk" was being recorded.