I really hope this is the last build fix. Apparently exec doesn't quite arguments...
authorrniwa@webkit.org <rniwa@webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Wed, 4 Apr 2012 06:24:39 +0000 (06:24 +0000)
committerrniwa@webkit.org <rniwa@webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Wed, 4 Apr 2012 06:24:39 +0000 (06:24 +0000)
double quotations on Windows. Use system instead.

Hopefully, this won't break anything.

* Scripts/run-webkit-tests:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@113144 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Tools/ChangeLog
Tools/Scripts/run-webkit-tests

index 0f17353..0e0c426 100644 (file)
@@ -1,3 +1,12 @@
+2012-04-03  Ryosuke Niwa  <rniwa@webkit.org>
+
+        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  <keishi@webkit.org>
 
         Disable ENABLE_DATALIST for now
index e51c0a6..a2dc203 100755 (executable)
@@ -118,4 +118,5 @@ if (isQt()) {
 
 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";