Changeset 232775 in webkit


Ignore:
Timestamp:
Jun 12, 2018 2:37:08 PM (6 years ago)
Author:
commit-queue@webkit.org
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 <valerie@bocoup.com> on 2018-06-12
Reviewed by Michael Saboff.

  • Scripts/webkitperl/test262_unittest/test262-runner-tests.pl:

fix subtest to use mock JSC

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r232766 r232775  
     12018-06-12  Valerie R Young  <valerie@bocoup.com>
     2
     3        test262/Runner.pm: fix one test (can't find jsc)
     4        https://bugs.webkit.org/show_bug.cgi?id=186573
     5
     6        Reviewed by Michael Saboff.
     7
     8        * Scripts/webkitperl/test262_unittest/test262-runner-tests.pl:
     9        fix subtest to use mock JSC
     10
    1112018-06-12  Tim Horton  <timothy_horton@apple.com>
    212
  • trunk/Tools/Scripts/webkitperl/test262_unittest/test262-runner-tests.pl

    r232756 r232775  
    149149my $expect = "--expectations $expectationsFile";
    150150my $test = "--test-only test/fail.js";
    151 my $cmd = qq($runner --save --ignore-expectations $test262loc $test $expect);
     151my $jsc = "--jsc $mockTest262/mock-jsc-fail.pl";
     152my $cmd = qq($runner --save --ignore-expectations $jsc $test262loc $test $expect);
    152153qx($cmd);
    153154
Note: See TracChangeset for help on using the changeset viewer.