Title: [99385] trunk/Tools
Revision
99385
Author
[email protected]
Date
2011-11-06 14:45:25 -0800 (Sun, 06 Nov 2011)

Log Message

[Qt] Unreviewed trivial fix after build system refactoring.

* Scripts/run-qtwebkit-tests: Fix qml_import_path.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (99384 => 99385)


--- trunk/Tools/ChangeLog	2011-11-06 22:27:34 UTC (rev 99384)
+++ trunk/Tools/ChangeLog	2011-11-06 22:45:25 UTC (rev 99385)
@@ -1,3 +1,9 @@
+2011-11-06  Csaba Osztrogonác  <[email protected]>
+
+        [Qt] Unreviewed trivial fix after build system refactoring.
+
+        * Scripts/run-qtwebkit-tests: Fix qml_import_path.
+
 2011-11-06  Eric Seidel  <[email protected]>
 
         Clarify how the symbol and runtime-feature based test exclusion works and cleanup the code a bit

Modified: trunk/Tools/Scripts/run-qtwebkit-tests (99384 => 99385)


--- trunk/Tools/Scripts/run-qtwebkit-tests	2011-11-06 22:27:34 UTC (rev 99384)
+++ trunk/Tools/Scripts/run-qtwebkit-tests	2011-11-06 22:45:25 UTC (rev 99385)
@@ -209,8 +209,8 @@
         """ Find && execute && publish results of all test. "All in one" function. """
         # This is needed for Qt finding our QML modules. The current code makes our
         # two existing API tests (WK1 API and WK2 UI process API) work correctly.
-        qml_import_path = self._options.path + "../../../imports"
-        qml_import_path += ":" + self._options.path + "../../../../../imports"
+        qml_import_path = self._options.path + "../../../../imports"
+        qml_import_path += ":" + self._options.path + "../../../../../../imports"
         os.putenv("QML_IMPORT_PATH", qml_import_path)
         path = os.getenv("PATH")
         path += ":" + self._options.path + "../../../../../bin"
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to