Changeset 1148
- Timestamp:
- 01/30/08 16:20:52 (7 months ago)
- Files:
-
- status/reports (added)
- status/runbuild.pl (modified) (3 diffs)
- status/templates/tests.tt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
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"); status/templates/tests.tt
r1147 r1148 2 2 <head> 3 3 <title>Test Results</title> 4 <style type="text/css"> 5 .fail_serious { 6 background: #c00; 7 } 8 9 .fail_minor { 10 background: #f33; 11 } 12 13 .pass { 14 background: #3c3; 15 } 4 16 </head> 5 17 <body>
