Changeset 2049 for trunk/tsuite/auto/runall.pl
- Timestamp:
- 05/12/08 13:27:20 (6 months ago)
- Files:
-
- 1 modified
-
trunk/tsuite/auto/runall.pl (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/tsuite/auto/runall.pl
r2048 r2049 7 7 # of Cloudy. 8 8 9 # This can be done using an argument to runall.pl. To test the build in source 10 # 11 # runall.pl 12 # 13 # To test the build in the sys_XXX subdirectory of source 14 # 15 # runall.pl sys_XXX 16 9 17 # after all the models are run the "checkall.pl" script can be run 10 18 # to check that everything went ok … … 14 22 # original download and if the executable was built in source 15 23 # using g++ and the makefiles provided 16 $exe = "../../source/cloudy.exe";24 $exe = '../../source/'.$ARGV[0].'/cloudy.exe'; 17 25 18 26 # these are the various compiler builds that occur in sys_XXX … … 21 29 # 22 30 # sys_gcc 23 $exe = "../../source/sys_gcc/cloudy.exe";31 # $exe = "../../source/sys_gcc/cloudy.exe"; 24 32 # $exe = "../../source/sys_gprof/cloudy.exe"; 25 33 # $exe = "../../source/sys_IBMxSeries/cloudy.exe"; … … 31 39 if( ! -e "$exe" ) 32 40 { 33 print "The executable file does not exist\n"; 34 exit; 41 die "The executable file $exe does not exist\n"; 35 42 } 36 43
