[llvm-commits] CVS: llvm/utils/NightlyTest.pl

LLVM llvm at cs.uiuc.edu
Wed Jun 23 01:45:01 PDT 2004


Changes in directory llvm/utils:

NightlyTest.pl updated: 1.56 -> 1.57

---
Log message:

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.


---
Diffs of the changes:  (+1 -1)

Index: llvm/utils/NightlyTest.pl
diff -u llvm/utils/NightlyTest.pl:1.56 llvm/utils/NightlyTest.pl:1.57
--- llvm/utils/NightlyTest.pl:1.56	Tue Jun 22 10:38:37 2004
+++ llvm/utils/NightlyTest.pl	Wed Jun 23 01:36:34 2004
@@ -101,7 +101,7 @@
   if (defined($1)) {
     return $1;
   }
-  return "?";
+  return "0";
 }
 
 sub AddRecord {





More information about the llvm-commits mailing list