Log Message
Run _javascript_core tests on Windows without cygwin https://bugs.webkit.org/show_bug.cgi?id=144419
Patch by Alex Christensen <[email protected]> on 2015-04-29 Reviewed by Brent Fulgham. * Scripts/run-_javascript_core-tests: (runJSCStressTests): Just call ruby, not /usr/bin/env ruby.
Modified Paths
Diff
Modified: trunk/Tools/ChangeLog (183592 => 183593)
--- trunk/Tools/ChangeLog 2015-04-30 00:21:20 UTC (rev 183592)
+++ trunk/Tools/ChangeLog 2015-04-30 00:23:54 UTC (rev 183593)
@@ -1,3 +1,14 @@
+2015-04-29 Alex Christensen <[email protected]>
+
+ Run _javascript_core tests on Windows without cygwin
+ https://bugs.webkit.org/show_bug.cgi?id=144419
+
+ Reviewed by Brent Fulgham.
+
+ * Scripts/run-_javascript_core-tests:
+ (runJSCStressTests):
+ Just call ruby, not /usr/bin/env ruby.
+
2015-04-29 Yusuke Suzuki <[email protected]>
[GTK] Add --enable-shared option to LLVM to build mesa
Modified: trunk/Tools/Scripts/run-_javascript_core-tests (183592 => 183593)
--- trunk/Tools/Scripts/run-_javascript_core-tests 2015-04-30 00:21:20 UTC (rev 183592)
+++ trunk/Tools/Scripts/run-_javascript_core-tests 2015-04-30 00:23:54 UTC (rev 183593)
@@ -281,6 +281,9 @@
"Source/_javascript_Core/tests/typeProfiler.yaml",
"Source/_javascript_Core/tests/controlFlowProfiler.yaml"
);
+ if (isWindows() && !isCygwin()) {
+ shift @jscStressDriverCmd; # Remove /usr/bin/env
+ }
if ($enableFTL) {
push(@jscStressDriverCmd, "--ftl-jit");
}
_______________________________________________ webkit-changes mailing list [email protected] https://lists.webkit.org/mailman/listinfo/webkit-changes
