diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-06-23 06:36:34 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-06-23 06:36:34 +0000 |
commit | a337f0c43d730d0f4b48299fad58633f08dd7273 (patch) | |
tree | 15e2f1ce1db997508f697cb2cb6d5471cd78809f | |
parent | b06e8483bec55bb03697c8b41e823931566bbd07 (diff) |
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.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14344 91177308-0d34-0410-b5e6-96231b3b80d8
-rwxr-xr-x | utils/NightlyTest.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/NightlyTest.pl b/utils/NightlyTest.pl index 4543a5a56c..57c22014f6 100755 --- a/utils/NightlyTest.pl +++ b/utils/NightlyTest.pl @@ -101,7 +101,7 @@ sub GetRegex { # (Regex with ()'s, value) if (defined($1)) { return $1; } - return "?"; + return "0"; } sub AddRecord { |