Title: [201391] trunk/Tools
Revision
201391
Author
[email protected]
Date
2016-05-25 11:31:39 -0700 (Wed, 25 May 2016)

Log Message

run-jsc-benchmarks should use the new JSBench rather than look for it in the config file.
https://bugs.webkit.org/show_bug.cgi?id=158077

Reviewed by Mark Lam.

Since we didn't have JSBench in the tree before we needed to lookup the path to it from
benchmark config file. That's no longer the case so we should just fix it in the script.

* Scripts/run-jsc-benchmarks:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (201390 => 201391)


--- trunk/Tools/ChangeLog	2016-05-25 18:20:26 UTC (rev 201390)
+++ trunk/Tools/ChangeLog	2016-05-25 18:31:39 UTC (rev 201391)
@@ -1,3 +1,15 @@
+2016-05-25  Keith Miller  <[email protected]>
+
+        run-jsc-benchmarks should use the new JSBench rather than look for it in the config file.
+        https://bugs.webkit.org/show_bug.cgi?id=158077
+
+        Reviewed by Mark Lam.
+
+        Since we didn't have JSBench in the tree before we needed to lookup the path to it from
+        benchmark config file. That's no longer the case so we should just fix it in the script.
+
+        * Scripts/run-jsc-benchmarks:
+
 2016-05-24  Aakash Jain  <[email protected]>
 
         Reorganize dashboard code: move code from _timeIntervalString to base class

Modified: trunk/Tools/Scripts/run-jsc-benchmarks (201390 => 201391)


--- trunk/Tools/Scripts/run-jsc-benchmarks	2016-05-25 18:20:26 UTC (rev 201390)
+++ trunk/Tools/Scripts/run-jsc-benchmarks	2016-05-25 18:31:39 UTC (rev 201391)
@@ -43,12 +43,14 @@
 raise unless SCRIPT_PATH.dirname.dirname.basename.to_s == "Tools"
 
 OPENSOURCE_PATH = SCRIPT_PATH.dirname.dirname.dirname
+PERFORMANCETESTS_PATH = OPENSOURCE_PATH + "PerformanceTests"
 
-SUNSPIDER_PATH = OPENSOURCE_PATH + "PerformanceTests" + "SunSpider" + "tests" + "sunspider-1.0"
-LONGSPIDER_PATH = OPENSOURCE_PATH + "PerformanceTests" + "LongSpider"
-V8_PATH = OPENSOURCE_PATH + "PerformanceTests" + "SunSpider" + "tests" + "v8-v6"
+SUNSPIDER_PATH = PERFORMANCETESTS_PATH + "SunSpider" + "tests" + "sunspider-1.0"
+LONGSPIDER_PATH = PERFORMANCETESTS_PATH + "LongSpider"
+V8_PATH = PERFORMANCETESTS_PATH + "SunSpider" + "tests" + "v8-v6"
 JSREGRESS_PATH = OPENSOURCE_PATH + "LayoutTests" + "js" + "regress" + "script-tests"
-OCTANE_WRAPPER_PATH = OPENSOURCE_PATH + "PerformanceTests" + "Octane" + "wrappers"
+OCTANE_WRAPPER_PATH = PERFORMANCETESTS_PATH + "Octane" + "wrappers"
+JSBENCH_PATH = PERFORMANCETESTS_PATH + "JSBench"
 
 TEMP_PATH = OPENSOURCE_PATH + "BenchmarkTemp"
 
@@ -2860,7 +2862,6 @@
   DSPJS_JSLINUX_PATH = pathname_if_exist(config["DSPJSLinuxPath"])
   DSPJS_AMMOJS_ASMJS_PATH = pathname_if_exist(config["DSPJSAmmoJSAsmJSPath"])
   DSPJS_AMMOJS_REGULAR_PATH = pathname_if_exist(config["DSPJSAmmoJSRegularPath"])
-  JSBENCH_PATH = pathname_if_exist(config["JSBenchPath"])
   KRAKEN_PATH = pathname_if_exist(config["KrakenPath"])
   
   # If the --dont-copy-vms option was passed, it overrides the --force-vm-copy option.
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to