Changeset 1148 for status/runbuild.pl
- Timestamp:
- 01/30/08 16:20:52 (10 months ago)
- Files:
-
- 1 modified
-
status/runbuild.pl (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
status/runbuild.pl
r1147 r1148 5 5 6 6 use Config::Tiny; 7 use Cwd; 7 8 use SVN::Agent; 8 9 … … 23 24 $sa->update; 24 25 26 my $program_dir = cwd; 27 25 28 chdir $config{'trunk'}; 26 29 system("perl Build.PL --force \ … … 31 34 install_path=bindoc=$config{'bindoc'}"); 32 35 36 my (undef, undef, undef, $day, $month, $year) = localtime(time); 37 $year += 1900; 38 $month = sprintf("%02d", ++$month); 39 33 40 system("perl Build"); 34 system("perl Build test verbose=1 2>&1 > output.txt");41 system("perl Build test verbose=1 2>&1 > $program_dir/reports/test-results-$year-$month-$day.txt");
