⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 113144 in webkit


Ignore:
Timestamp:
Apr 3, 2012, 11:24:39 PM (14 years ago)
Author:
rniwa@webkit.org
Message:

I really hope this is the last build fix. Apparently exec doesn't quite arguments with
double quotations on Windows. Use system instead.

Hopefully, this won't break anything.

  • Scripts/run-webkit-tests:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r113137 r113144  
     12012-04-03  Ryosuke Niwa  <rniwa@webkit.org>
     2
     3        I really hope this is the last build fix. Apparently exec doesn't quite arguments with
     4        double quotations on Windows. Use system instead.
     5
     6        Hopefully, this won't break anything.
     7
     8        * Scripts/run-webkit-tests:
     9
    1102012-04-03  Keishi Hattori  <keishi@webkit.org>
    211
  • trunk/Tools/Scripts/run-webkit-tests

    r113134 r113144  
    119119my $harnessPath = File::Spec->catfile(relativeScriptsDir(), $harnessName);
    120120unshift(@ARGV, $harnessPath);
    121 exec $script ($script, @ARGV) or die "Failed to execute $harnessPath";
     121unshift(@ARGV, $script);
     122system @ARGV or die "Failed to execute $harnessPath";
Note: See TracChangeset for help on using the changeset viewer.