Changeset 113144 in webkit
- Timestamp:
- Apr 3, 2012, 11:24:39 PM (14 years ago)
- Location:
- trunk/Tools
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
Scripts/run-webkit-tests (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r113137 r113144 1 2012-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 1 10 2012-04-03 Keishi Hattori <keishi@webkit.org> 2 11 -
trunk/Tools/Scripts/run-webkit-tests
r113134 r113144 119 119 my $harnessPath = File::Spec->catfile(relativeScriptsDir(), $harnessName); 120 120 unshift(@ARGV, $harnessPath); 121 exec $script ($script, @ARGV) or die "Failed to execute $harnessPath"; 121 unshift(@ARGV, $script); 122 system @ARGV or die "Failed to execute $harnessPath";
Note:
See TracChangeset
for help on using the changeset viewer.