Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(439)

Side by Side Diff: TEST.pnacl.report

Issue 752333002: Add missing files for PNaCl. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-llvm-testsuite.git@master
Patch Set: Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « TEST.pnacl.Makefile ('k') | codereview.settings » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 ##=== TEST.nightly.report - Report description for nightly -----*- perl -*-===## 1 ##=== TEST.pnacl.report - Report description for nightly -----*- perl -*-===##
2 # 2 #
3 # This file defines a report to be generated for the nightly tests. 3 # This file defines a report to be generated for the nightly tests.
4 # It is identical to TEST.simple.report but must exist with a different name.
4 # 5 #
5 ##===----------------------------------------------------------------------===## 6 ##===----------------------------------------------------------------------===##
6 7
7 # Sort by program name 8 # Sort by program name
8 $SortCol = 0; 9 $SortCol = 0;
9 $TrimRepeatedPrefix = 1; 10 $TrimRepeatedPrefix = 1;
10 11
11 my $WallTimeRE = "Time: ([0-9.]+) seconds \\([0-9.]+ wall clock"; 12 my $WallTimeRE = "Time: ([0-9.]+) seconds \\([0-9.]+ wall clock";
12 13
13 # FormatTime - Convert a time from 1m23.45 into 83.45 14 # FormatTime - Convert a time from 1m23.45 into 83.45
14 sub FormatTime { 15 sub FormatTime {
15 my $Time = shift; 16 my $Time = shift;
16 if ($Time =~ m/([0-9]+)[m:]([0-9.]+)/) { 17 if ($Time =~ m/([0-9]+)[m:]([0-9.]+)/) {
17 return sprintf("%7.4f", $1*60.0+$2); 18 return sprintf("%7.4f", $1*60.0+$2);
18 } 19 }
19 20
20 return sprintf("%7.4f", $Time); 21 return sprintf("%7.4f", $Time);
21 } 22 }
22 23
23 ( 24 (
24 ["Program" , '\'([^\']+)\' Program'], 25 ["Program" , '\'([^\']+)\' Program'],
25 [], 26 [],
26 ["CC" , 'TEST-RESULT-compile-success: (pass|fail|xfail)'], 27 ["CC" , 'TEST-RESULT-compile-success: (pass|fail|xfail)'],
27 ["CC_Time" , 'TEST-RESULT-compile-time: user\s*([.0-9m:]+)', \&FormatTime], 28 ["CC_Time" , 'TEST-RESULT-compile-time: program\s*([.0-9m:]+)', \&FormatTime],
28 ["CC_Real_Time", 'TEST-RESULT-compile-real-time: real\s*([.0-9m:]+)', \&FormatT ime],
29 ["Exec" , 'TEST-RESULT-exec-success: (pass|fail|xfail)'], 29 ["Exec" , 'TEST-RESULT-exec-success: (pass|fail|xfail)'],
30 ["Exec_Time", 'TEST-RESULT-exec-time: user\s*([.0-9m:]+)', \&FormatTime], 30 ["Exec_Time", 'TEST-RESULT-exec-time: program\s*([.0-9m:]+)', \&FormatTime],
31 ["Exec_Real_Time", 'TEST-RESULT-exec-real-time: real\s*([.0-9m:]+)', \&FormatTi me],
32 ); 31 );
OLDNEW
« no previous file with comments | « TEST.pnacl.Makefile ('k') | codereview.settings » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698