From: Reid Spencer Date: Wed, 23 Jun 2004 06:36:34 +0000 (+0000) Subject: Make sure GetRegEx returns something gnuplot can deal with (a number, not X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=a337f0c43d730d0f4b48299fad58633f08dd7273;p=oota-llvm.git 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 --- diff --git a/utils/NightlyTest.pl b/utils/NightlyTest.pl index 4543a5a56ce..57c22014f64 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 {