Title: [232775] trunk/Tools
Revision
232775
Author
commit-qu...@webkit.org
Date
2018-06-12 14:37:08 -0700 (Tue, 12 Jun 2018)

Log Message

test262/Runner.pm: fix one test (can't find jsc)
https://bugs.webkit.org/show_bug.cgi?id=186573

Patch by Valerie R Young <vale...@bocoup.com> on 2018-06-12
Reviewed by Michael Saboff.

* Scripts/webkitperl/test262_unittest/test262-runner-tests.pl:
fix subtest to use mock JSC

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (232774 => 232775)


--- trunk/Tools/ChangeLog	2018-06-12 21:14:04 UTC (rev 232774)
+++ trunk/Tools/ChangeLog	2018-06-12 21:37:08 UTC (rev 232775)
@@ -1,3 +1,13 @@
+2018-06-12  Valerie R Young  <vale...@bocoup.com>
+
+        test262/Runner.pm: fix one test (can't find jsc)
+        https://bugs.webkit.org/show_bug.cgi?id=186573
+
+        Reviewed by Michael Saboff.
+
+        * Scripts/webkitperl/test262_unittest/test262-runner-tests.pl:
+        fix subtest to use mock JSC
+
 2018-06-12  Tim Horton  <timothy_hor...@apple.com>
 
         Add a API test for r232601

Modified: trunk/Tools/Scripts/webkitperl/test262_unittest/test262-runner-tests.pl (232774 => 232775)


--- trunk/Tools/Scripts/webkitperl/test262_unittest/test262-runner-tests.pl	2018-06-12 21:14:04 UTC (rev 232774)
+++ trunk/Tools/Scripts/webkitperl/test262_unittest/test262-runner-tests.pl	2018-06-12 21:37:08 UTC (rev 232775)
@@ -148,7 +148,8 @@
 my ($expectationsFH, $expectationsFile) = tempfile();
 my $expect = "--expectations $expectationsFile";
 my $test = "--test-only test/fail.js";
-my $cmd = qq($runner --save --ignore-expectations $test262loc $test $expect);
+my $jsc = "--jsc $mockTest262/mock-jsc-fail.pl";
+my $cmd = qq($runner --save --ignore-expectations $jsc $test262loc $test $expect);
 qx($cmd);
 
 my $expectedExpectationsFile = "$Bin/fixtures/expectations-compare.yaml";
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to