Title: [159990] trunk/Tools
Revision
159990
Author
fpi...@apple.com
Date
2013-12-02 20:19:07 -0800 (Mon, 02 Dec 2013)

Log Message

run-jsc-stress-tests should allow for tests that have a directory containing .js files nested within a directory containing the data
https://bugs.webkit.org/show_bug.cgi?id=125130

Reviewed by Geoffrey Garen.

* Scripts/run-jsc-stress-tests:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (159989 => 159990)


--- trunk/Tools/ChangeLog	2013-12-03 03:19:08 UTC (rev 159989)
+++ trunk/Tools/ChangeLog	2013-12-03 04:19:07 UTC (rev 159990)
@@ -1,3 +1,12 @@
+2013-12-02  Filip Pizlo  <fpi...@apple.com>
+
+        run-jsc-stress-tests should allow for tests that have a directory containing .js files nested within a directory containing the data
+        https://bugs.webkit.org/show_bug.cgi?id=125130
+
+        Reviewed by Geoffrey Garen.
+
+        * Scripts/run-jsc-stress-tests:
+
 2013-12-02  Samuel White  <samuel_wh...@apple.com>
 
         AX: Add AXUIElementCountForSearchPredicate parameterized attribute.

Modified: trunk/Tools/Scripts/run-jsc-stress-tests (159989 => 159990)


--- trunk/Tools/Scripts/run-jsc-stress-tests	2013-12-03 03:19:08 UTC (rev 159989)
+++ trunk/Tools/Scripts/run-jsc-stress-tests	2013-12-03 04:19:07 UTC (rev 159990)
@@ -810,7 +810,11 @@
         prepareCollection($collectionName)
       
         Dir.chdir($outputDir) {
-            allJSFiles($collection).each {
+            directoryToSearch = $collection
+            if entry["tests"]
+                directoryToSearch += entry["tests"]
+            end
+            allJSFiles(directoryToSearch).each {
                 | path |
                
                 $benchmark = path.basename
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to