projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f142713
)
Trim the home directory from the dejagnu test
author
Jim Laskey
<jlaskey@mac.com>
Wed, 20 Sep 2006 09:20:22 +0000
(09:20 +0000)
committer
Jim Laskey
<jlaskey@mac.com>
Wed, 20 Sep 2006 09:20:22 +0000
(09:20 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30519
91177308
-0d34-0410-b5e6-
96231b3b80d8
utils/NewNightlyTest.pl
patch
|
blob
|
history
diff --git
a/utils/NewNightlyTest.pl
b/utils/NewNightlyTest.pl
index 5e93ddd4869b5dd9d0996002f8865e3e46a3d0c1..4d72646d8b17ee8b8a1965d72b46a35ec88f9719 100755
(executable)
--- a/
utils/NewNightlyTest.pl
+++ b/
utils/NewNightlyTest.pl
@@
-385,9
+385,8
@@
sub GetDejagnuTestResults { # (filename, log)
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");
}
}
}