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

Jim Laskey jlaskey at apple.com
Wed Sep 20 02:20:42 PDT 2006



Changes in directory llvm/utils:

NewNightlyTest.pl updated: 1.59 -> 1.60
---
Log message:

Trim the home directory from the dejagnu test

---
Diffs of the changes:  (+2 -3)

 NewNightlyTest.pl |    5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)


Index: llvm/utils/NewNightlyTest.pl
diff -u llvm/utils/NewNightlyTest.pl:1.59 llvm/utils/NewNightlyTest.pl:1.60
--- llvm/utils/NewNightlyTest.pl:1.59	Fri Sep 15 12:03:36 2006
+++ llvm/utils/NewNightlyTest.pl	Wed Sep 20 04:20:22 2006
@@ -385,9 +385,8 @@
         while ( <SRCHFILE> ) {
             if ( length($_) > 1 ) {
                 chomp($_);
-                if ( m/^PASS:/ || m/^XPASS:/ ||
-                     m/^FAIL:/ || m/^XFAIL:/) {
-                    push(@lines, "$_");
+                if ( m/^(PASS|XPASS|FAIL|XFAIL): .*\/llvm\/test\/(.*)$/ ) {
+                    push(@lines, "$1: test/$2");
                 }
             }
         }






More information about the llvm-commits mailing list