summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2004-06-23 06:36:34 +0000
committerReid Spencer <rspencer@reidspencer.com>2004-06-23 06:36:34 +0000
commit64889c65e5f5eef61301ffd93396f0d2cbf9ea8e (patch)
treeb6e7b9646a2cacb2b36074f40a1ebb6460c39a31
parent3a4916ea32eb1de9f619e0659b9ae622665e907c (diff)
downloadbcm5719-llvm-64889c65e5f5eef61301ffd93396f0d2cbf9ea8e.tar.gz
bcm5719-llvm-64889c65e5f5eef61301ffd93396f0d2cbf9ea8e.zip
Make sure GetRegEx returns something gnuplot can deal with (a number, not
a ?) so that graphs don't bail if something fails in a test. llvm-svn: 14344
-rwxr-xr-xllvm/utils/NightlyTest.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/utils/NightlyTest.pl b/llvm/utils/NightlyTest.pl
index 4543a5a56ce..57c22014f64 100755
--- a/llvm/utils/NightlyTest.pl
+++ b/llvm/utils/NightlyTest.pl
@@ -101,7 +101,7 @@ sub GetRegex { # (Regex with ()'s, value)
if (defined($1)) {
return $1;
}
- return "?";
+ return "0";
}
sub AddRecord {
OpenPOWER on IntegriCloud