Before, we were printing an unpredictable, context-specific substring
of the directory.
Reviewed by Lars.
* Scripts/run-webkit-tests:
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@25022
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2007-08-12 Adam Roben <aroben@apple.com>
+
+ Print the actual directory where new results are generated.
+
+ Before, we were printing an unpredictable, context-specific substring
+ of the directory.
+
+ Reviewed by Lars.
+
+ * Scripts/run-webkit-tests:
+
2007-08-12 Adam Roben <aroben@apple.com>
Factor some common code into a stripExtension() subroutine.
print "\n" unless $atLineStart;
print "$test -> ";
}
- print "new (results generated in $expectedDir)\n";
+ my $resultsDir = catdir($expectedDir, dirname($base));
+ print "new (results generated in $resultsDir)\n";
$atLineStart = 1;
}
} elsif ($actual eq $expected && $diffResult eq "passed") {