Title: [113144] trunk/Tools
Revision
113144
Author
[email protected]
Date
2012-04-03 23:24:39 -0700 (Tue, 03 Apr 2012)

Log 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:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (113143 => 113144)


--- trunk/Tools/ChangeLog	2012-04-04 05:54:26 UTC (rev 113143)
+++ trunk/Tools/ChangeLog	2012-04-04 06:24:39 UTC (rev 113144)
@@ -1,3 +1,12 @@
+2012-04-03  Ryosuke Niwa  <[email protected]>
+
+        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:
+
 2012-04-03  Keishi Hattori  <[email protected]>
 
         Disable ENABLE_DATALIST for now

Modified: trunk/Tools/Scripts/run-webkit-tests (113143 => 113144)


--- trunk/Tools/Scripts/run-webkit-tests	2012-04-04 05:54:26 UTC (rev 113143)
+++ trunk/Tools/Scripts/run-webkit-tests	2012-04-04 06:24:39 UTC (rev 113144)
@@ -118,4 +118,5 @@
 
 my $harnessPath = File::Spec->catfile(relativeScriptsDir(), $harnessName);
 unshift(@ARGV, $harnessPath);
-exec $script ($script, @ARGV) or die "Failed to execute $harnessPath";
+unshift(@ARGV, $script);
+system @ARGV or die "Failed to execute $harnessPath";
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to