Title: [190452] trunk/Tools
Revision
190452
Author
bfulg...@apple.com
Date
2015-10-01 21:35:27 -0700 (Thu, 01 Oct 2015)

Log Message

[Win] Unreviewed build fix for run-api-tests

* Scripts/run-api-tests:
(testToolPaths): Windows run needs to specify the binary path.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (190451 => 190452)


--- trunk/Tools/ChangeLog	2015-10-02 04:27:32 UTC (rev 190451)
+++ trunk/Tools/ChangeLog	2015-10-02 04:35:27 UTC (rev 190452)
@@ -1,3 +1,10 @@
+2015-10-01  Brent Fulgham  <bfulg...@apple.com>
+
+        [Win] Unreviewed build fix for run-api-tests
+
+        * Scripts/run-api-tests:
+        (testToolPaths): Windows run needs to specify the binary path.
+
 2015-10-01  Daniel Bates  <daba...@apple.com>
 
         Another attempt to fix the Windows builders after <https://trac.webkit.org/changeset/190387>

Modified: trunk/Tools/Scripts/run-api-tests (190451 => 190452)


--- trunk/Tools/Scripts/run-api-tests	2015-10-02 04:27:32 UTC (rev 190451)
+++ trunk/Tools/Scripts/run-api-tests	2015-10-02 04:35:27 UTC (rev 190452)
@@ -364,9 +364,10 @@
     my $path = File::Spec->catfile(productDir(), "TestWebKitAPI");
     return ($path) unless isAppleWinWebKit();
 
-    my $pathWTF = File::Spec->catfile(productDir(), "TestWTF");
-    my $pathWebCore = File::Spec->catfile(productDir(), "TestWebCore");
-    my $pathWebKit = File::Spec->catfile(productDir(), "TestWebKit");
+    my $binDir = isWin64() ? "bin64" : "bin32";
+    my $pathWTF = File::Spec->catfile(productDir(), $binDir, "TestWTF");
+    my $pathWebCore = File::Spec->catfile(productDir(), $binDir, "TestWebCore");
+    my $pathWebKit = File::Spec->catfile(productDir(), $binDir, "TestWebKit");
 
     my $suffix;
     if (configuration() eq "Debug_All") {
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to