Title: [179830] trunk/Tools
Revision
179830
Author
[email protected]
Date
2015-02-09 09:52:18 -0800 (Mon, 09 Feb 2015)

Log Message

run-jsc-stress-tests shell test runner should run tests in fixed order
https://bugs.webkit.org/show_bug.cgi?id=141383

Reviewed by Darin Adler.

* Scripts/jsc-stress-test-helpers/shell-runner.sh:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (179829 => 179830)


--- trunk/Tools/ChangeLog	2015-02-09 17:15:28 UTC (rev 179829)
+++ trunk/Tools/ChangeLog	2015-02-09 17:52:18 UTC (rev 179830)
@@ -1,3 +1,12 @@
+2015-02-09  Csaba Osztrogonác  <[email protected]>
+
+        run-jsc-stress-tests shell test runner should run tests in fixed order
+        https://bugs.webkit.org/show_bug.cgi?id=141383
+
+        Reviewed by Darin Adler.
+
+        * Scripts/jsc-stress-test-helpers/shell-runner.sh:
+
 2015-02-08  Chris Fleizach  <[email protected]>
 
         AX: VoiceOver appears unresponsive when _javascript_ alerts are triggered via focus or blur events

Modified: trunk/Tools/Scripts/jsc-stress-test-helpers/shell-runner.sh (179829 => 179830)


--- trunk/Tools/Scripts/jsc-stress-test-helpers/shell-runner.sh	2015-02-09 17:15:28 UTC (rev 179829)
+++ trunk/Tools/Scripts/jsc-stress-test-helpers/shell-runner.sh	2015-02-09 17:52:18 UTC (rev 179830)
@@ -39,7 +39,7 @@
 trap "kill -9 0" INT HUP TERM
 
 echo 0 > ${indexFile}
-find . -maxdepth 1 -name 'test_script_*' > ${testList}
+find . -maxdepth 1 -name 'test_script_*' | sort -t '_' -k3nr > ${testList}
 
 lock_test_list() {
     until mkdir ${lockDir} 2> /dev/null; do sleep 0; done
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to