Title: [129291] trunk/Tools
Revision
129291
Author
[email protected]
Date
2012-09-21 18:50:32 -0700 (Fri, 21 Sep 2012)

Log Message

Fix typo in additional-platform-directory patch just landed
https://bugs.webkit.org/show_bug.cgi?id=97380

Unreviewed, build fix.

* Scripts/webkitpy/layout_tests/port/base.py:
(Port.relative_test_filename):
(Port.relative_perf_test_filename):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (129290 => 129291)


--- trunk/Tools/ChangeLog	2012-09-22 01:35:10 UTC (rev 129290)
+++ trunk/Tools/ChangeLog	2012-09-22 01:50:32 UTC (rev 129291)
@@ -1,5 +1,16 @@
 2012-09-21  Dirk Pranke  <[email protected]>
 
+        Fix typo in additional-platform-directory patch just landed
+        https://bugs.webkit.org/show_bug.cgi?id=97380
+        
+        Unreviewed, build fix.
+
+        * Scripts/webkitpy/layout_tests/port/base.py:
+        (Port.relative_test_filename):
+        (Port.relative_perf_test_filename):
+
+2012-09-21  Dirk Pranke  <[email protected]>
+
         nrwt: don't require additional-platform-directory to be an abspath or live under LayoutTests
         https://bugs.webkit.org/show_bug.cgi?id=97380
 

Modified: trunk/Tools/Scripts/webkitpy/layout_tests/port/base.py (129290 => 129291)


--- trunk/Tools/Scripts/webkitpy/layout_tests/port/base.py	2012-09-22 01:35:10 UTC (rev 129290)
+++ trunk/Tools/Scripts/webkitpy/layout_tests/port/base.py	2012-09-22 01:50:32 UTC (rev 129291)
@@ -793,13 +793,13 @@
         if filename.startswith(self.layout_tests_dir()):
             return self.host.filesystem.relpath(filename, self.layout_tests_dir())
         else:
-            return self.filesystem.abspath(filename)
+            return self.host.filesystem.abspath(filename)
 
     def relative_perf_test_filename(self, filename):
         if filename.startswith(self.perf_tests_dir()):
             return self.host.filesystem.relpath(filename, self.perf_tests_dir())
         else:
-            return self.filesystem.abspath(filename)
+            return self.host.filesystem.abspath(filename)
 
     @memoized
     def abspath_for_test(self, test_name):
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to