Title: [155218] trunk/Tools
Revision
155218
Author
[email protected]
Date
2013-09-06 15:26:12 -0700 (Fri, 06 Sep 2013)

Log Message

The 'failed' file should report collectionName/testName rather than just
testName.

Rubber stamped by Mark Hahnenberg.

* Scripts/run-jsc-stress-tests:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (155217 => 155218)


--- trunk/Tools/ChangeLog	2013-09-06 22:08:14 UTC (rev 155217)
+++ trunk/Tools/ChangeLog	2013-09-06 22:26:12 UTC (rev 155218)
@@ -1,5 +1,14 @@
 2013-09-06  Filip Pizlo  <[email protected]>
 
+        The 'failed' file should report collectionName/testName rather than just
+        testName.
+
+        Rubber stamped by Mark Hahnenberg.
+
+        * Scripts/run-jsc-stress-tests:
+
+2013-09-06  Filip Pizlo  <[email protected]>
+
         Fix run-jsc-stress-tests to run on bots with old Ruby.
         
         Also make it create a repro file.

Modified: trunk/Tools/Scripts/run-jsc-stress-tests (155217 => 155218)


--- trunk/Tools/Scripts/run-jsc-stress-tests	2013-09-06 22:08:14 UTC (rev 155217)
+++ trunk/Tools/Scripts/run-jsc-stress-tests	2013-09-06 22:26:12 UTC (rev 155218)
@@ -77,7 +77,7 @@
         puts "FAIL: #{$?.inspect}"
         File.open($outputDir + "failed", "a") {
             | outp |
-            outp.puts name
+            outp.puts "#{$collectionName}/#{name}"
         }
         $numFailures += 1
         filename = $outputDir + $collectionName + name
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to