Changeset 96388 in webkit


Ignore:
Timestamp:
Sep 29, 2011 10:05:53 PM (13 years ago)
Author:
commit-queue@webkit.org
Message:

run-api-tests fails on chromium-win bot
https://bugs.webkit.org/show_bug.cgi?id=69121

On Windows running a perl script needs the interpreter.

Patch by Xianzhu Wang <wangxianzhu@chromium.org> on 2011-09-29
Reviewed by Adam Barth.

  • Scripts/run-api-tests:

(buildTestTool):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r96367 r96388  
     12011-09-29  Xianzhu Wang  <wangxianzhu@chromium.org>
     2
     3        run-api-tests fails on chromium-win bot
     4        https://bugs.webkit.org/show_bug.cgi?id=69121
     5
     6        On Windows running a perl script needs the interpreter.
     7
     8        Reviewed by Adam Barth.
     9
     10        * Scripts/run-api-tests:
     11        (buildTestTool):
     12
    1132011-09-29  Adam Barth  <abarth@webkit.org>
    214
  • trunk/Tools/Scripts/run-api-tests

    r96367 r96388  
    283283    my @args = argumentsForConfiguration();
    284284    my $pathToBuildTestTool = File::Spec->catfile("Tools", "Scripts", $buildTestTool);
    285     my $buildProcess = open3($childIn, $childOut, $childErr, $pathToBuildTestTool, @args) or die "Failed to run " . $buildTestTool;
     285    my $buildProcess = open3($childIn, $childOut, $childErr, "perl", $pathToBuildTestTool, @args) or die "Failed to run " . $buildTestTool;
    286286
    287287    close($childIn);
Note: See TracChangeset for help on using the changeset viewer.