Changeset 1972
- Timestamp:
- 04/27/08 06:34:58 (3 weeks ago)
- Files:
-
- trunk/scripts/copy_programs.pl (modified) (1 diff)
- trunk/scripts/dayslow_master.pl (modified) (1 diff)
- trunk/scripts/ir_extime.pl (modified) (2 diffs)
- trunk/scripts/nightly_copy_data.pl (modified) (1 diff)
- trunk/scripts/nightly_copy_files_original.pl (modified) (2 diffs)
- trunk/scripts/nightly_copy_tsuite.pl (modified) (1 diff)
- trunk/scripts/nightly_runL_tsuite_part2.pl (modified) (1 diff)
- trunk/scripts/nightly_run_tsuite.pl (modified) (3 diffs)
- trunk/scripts/promote_beta.pl (modified) (1 diff)
- trunk/scripts/promote_last_good.pl (modified) (1 diff)
- trunk/scripts/weekly_backup.pl (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/scripts/copy_programs.pl
r121 r1972 24 24 25 25 # the subdirectories under tsuite 26 @subdirs=(" auto","slow");26 @subdirs=("cauto","slow"); 27 27 28 28 # end block - set up path names to all targets on various machines trunk/scripts/dayslow_master.pl
r1279 r1972 35 35 $in_dir = "$c:/projects/cloudy/trunk/tsuite/slow/"; 36 36 $out_dir = "$c:/projects/cloudy/trunk/tsuite/slow/"; 37 $exec_stale = "$c:/projects/cloudy/trunk/tsuite/ auto/"."the_exec_is_stale.txt";37 $exec_stale = "$c:/projects/cloudy/trunk/tsuite/cauto/"."the_exec_is_stale.txt"; 38 38 39 39 # move to the output directory trunk/scripts/ir_extime.pl
r13 r1972 8 8 #* the log of the itr/zn and execution time of the models, every *# 9 9 #* time the models are executed. The percentage increse in time is *# 10 #* recorded in the file auto/itrzn.log *#10 #* recorded in the file cauto/itrzn.log *# 11 11 #* *# 12 12 #* Program written by Geetashree Chakravorty, Graduate Student *# … … 36 36 37 37 # move to dir with all the current models 38 if ( !chdir ( "$curr_dir/ auto" ) )38 if ( !chdir ( "$curr_dir/cauto" ) ) 39 39 { 40 40 printf (" invalid directory\n"); trunk/scripts/nightly_copy_data.pl
r367 r1972 67 67 68 68 # now do all data files in data dir 69 # there is a different set of data files tar'd into data.tar in tsuite/ auto, this is done69 # there is a different set of data files tar'd into data.tar in tsuite/cauto, this is done 70 70 # by the autorun.pl script 71 71 $input = "readme_data.htm"; trunk/scripts/nightly_copy_files_original.pl
r613 r1972 15 15 $original_source_dir = "c:/projects/cloudy/trunk/source"; 16 16 $original_data_dir = "c:/projects/cloudy/trunk/data"; 17 $original_tsuite_dir = "c:/projects/cloudy/trunk/tsuite/ auto";17 $original_tsuite_dir = "c:/projects/cloudy/trunk/tsuite/cauto"; 18 18 19 19 # this is the current debug exe, will bail out if $local_unix_source_dir/source.tar.gz source … … 335 335 336 336 # now do all data files in data dir 337 # there is a different set of data files tar'd into data.tar in tsuite/ auto, this is done337 # there is a different set of data files tar'd into data.tar in tsuite/cauto, this is done 338 338 # by the autorun.pl script 339 339 $input = "readme_data.htm"; trunk/scripts/nightly_copy_tsuite.pl
r367 r1972 33 33 34 34 # the subdirectories under tsuite 35 @subdirs=(" auto","slow");35 @subdirs=("cauto","slow"); 36 36 37 37 # end block - set up path names to all targets on various machines trunk/scripts/nightly_runL_tsuite_part2.pl
r1279 r1972 28 28 system( "net use $c: \\\\cumulus\\cumulus_c\$ /persistent:no" ); 29 29 30 $in_dir = "$c:/projects/cloudy/trunk/tsuite/ auto/";31 $out_dir = "$c:/projects/cloudy/trunk/tsuite/ auto/";30 $in_dir = "$c:/projects/cloudy/trunk/tsuite/cauto/"; 31 $out_dir = "$c:/projects/cloudy/trunk/tsuite/cauto/"; 32 32 33 33 # move to the output directory trunk/scripts/nightly_run_tsuite.pl
r1279 r1972 86 86 # $out_dir = "$c:/projects/cloudy/tsuite/short/"; 87 87 $script_dir = "$c:/projects/cloudy/trunk/scripts/"; 88 $in_dir = "$c:/projects/cloudy/trunk/tsuite/ auto/";89 $out_dir = "$c:/projects/cloudy/trunk/tsuite/ auto/";88 $in_dir = "$c:/projects/cloudy/trunk/tsuite/cauto/"; 89 $out_dir = "$c:/projects/cloudy/trunk/tsuite/cauto/"; 90 90 91 91 # the exe file name for the release version - faster but some cheks … … 151 151 152 152 # copy exec here so that scripts that follow an use it 153 system("copy c:\\projects\\cloudy\\trunk\\debug\\trunk.exe c:\\projects\\cloudy\\trunk\\tsuite\\ auto ");153 system("copy c:\\projects\\cloudy\\trunk\\debug\\trunk.exe c:\\projects\\cloudy\\trunk\\tsuite\\cauto "); 154 154 155 155 # see if errors.txt exists, if it does, and younger than exe file, just quit … … 498 498 "tar_mks -cvf \"$out_dir\"\"data.tar\" data/*.dat data/*.ini data/*.in data/*.rfi data/*.szd data/*.opc data/*.txt"); 499 499 500 # move back to auto dir500 # move back to cauto dir 501 501 # move to the output directory 502 502 if( !chdir( $out_dir ) ) trunk/scripts/promote_beta.pl
r13 r1972 42 42 $tsuite_zip = "$beta_dir"."$basename"."_tsuite.zip"; 43 43 44 # these files live in tsuite/ auto and were created by44 # these files live in tsuite/cauto and were created by 45 45 # last night's run of current\unix\copy_files.pl 46 46 if( !copy( "data.tar.gz" , $data_tar ) ) trunk/scripts/promote_last_good.pl
r13 r1972 13 13 14 14 # this is where the original test suite files live on my pc 15 $original_tsuite_dir = "c:/projects/cloudy/trunk/tsuite/ auto";15 $original_tsuite_dir = "c:/projects/cloudy/trunk/tsuite/cauto"; 16 16 # move to pc unix source dir 17 17 if( !chdir( "$original_tsuite_dir" ) ) trunk/scripts/weekly_backup.pl
r487 r1972 13 13 $c = "c"; 14 14 # input and output directories 15 $in_dir = "$c:/projects/cloudy/trunk/tsuite/ auto/";15 $in_dir = "$c:/projects/cloudy/trunk/tsuite/cauto/"; 16 16 17 17 # this is the letter of the cdrw drive on the network … … 46 46 $tsuite = "$out_dir"."$basename".".tsuite.tar"; 47 47 48 # these files live in tsuite/ auto and were created by48 # these files live in tsuite/cauto and were created by 49 49 # last night's run of current\unix\copy_files.pl 50 50 if( !copy( "cloudy.exe" , $exe ) )
