Title: [96388] trunk/Tools
- Revision
- 96388
- Author
- [email protected]
- Date
- 2011-09-29 22:05:53 -0700 (Thu, 29 Sep 2011)
Log 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 <[email protected]> on 2011-09-29
Reviewed by Adam Barth.
* Scripts/run-api-tests:
(buildTestTool):
Modified Paths
Diff
Modified: trunk/Tools/ChangeLog (96387 => 96388)
--- trunk/Tools/ChangeLog 2011-09-30 05:04:30 UTC (rev 96387)
+++ trunk/Tools/ChangeLog 2011-09-30 05:05:53 UTC (rev 96388)
@@ -1,3 +1,15 @@
+2011-09-29 Xianzhu Wang <[email protected]>
+
+ 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.
+
+ Reviewed by Adam Barth.
+
+ * Scripts/run-api-tests:
+ (buildTestTool):
+
2011-09-29 Adam Barth <[email protected]>
Attempt to make this tool work on Windows.
Modified: trunk/Tools/Scripts/run-api-tests (96387 => 96388)
--- trunk/Tools/Scripts/run-api-tests 2011-09-30 05:04:30 UTC (rev 96387)
+++ trunk/Tools/Scripts/run-api-tests 2011-09-30 05:05:53 UTC (rev 96388)
@@ -282,7 +282,7 @@
my @args = argumentsForConfiguration();
my $pathToBuildTestTool = File::Spec->catfile("Tools", "Scripts", $buildTestTool);
- my $buildProcess = open3($childIn, $childOut, $childErr, $pathToBuildTestTool, @args) or die "Failed to run " . $buildTestTool;
+ my $buildProcess = open3($childIn, $childOut, $childErr, "perl", $pathToBuildTestTool, @args) or die "Failed to run " . $buildTestTool;
close($childIn);
close($childOut);
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes