Changeset 97623 in webkit


Ignore:
Timestamp:
Oct 17, 2011 8:28:56 AM (13 years ago)
Author:
Csaba Osztrogonác
Message:

[Qt][WK2][meta] Fix failing API tests
https://bugs.webkit.org/show_bug.cgi?id=70236

Patch by Alexis Menard <alexis.menard@openbossa.org> on 2011-10-17
Reviewed by Csaba Osztrogonác.

In order to run WebKit2 API tests we need the WebProcess to be in
the path so let's add the bin directory when running the API tests of Qt.

  • Scripts/run-qtwebkit-tests:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r97622 r97623  
     12011-10-17  Alexis Menard  <alexis.menard@openbossa.org>
     2
     3        [Qt][WK2][meta] Fix failing API tests
     4        https://bugs.webkit.org/show_bug.cgi?id=70236
     5
     6        Reviewed by Csaba Osztrogonác.
     7
     8        In order to run WebKit2 API tests we need the WebProcess to be in
     9        the path so let's add the bin directory when running the API tests of Qt.
     10
     11        * Scripts/run-qtwebkit-tests:
     12
    1132011-10-17  Kristóf Kosztyó  <kkristof@inf.u-szeged.hu>
    214
  • trunk/Tools/Scripts/run-qtwebkit-tests

    r92283 r97623  
    213213        qml_import_path += ":" + self._options.path + "../../../../../imports"
    214214        os.putenv("QML_IMPORT_PATH", qml_import_path)
     215        path = os.getenv("PATH")
     216        path += ":" + self._options.path + "../../../../../bin"
     217        os.putenv("PATH", path)
    215218        self.debug("Searching executables...")
    216219        tests_executables = self.find_tests_paths(self._options.path)
Note: See TracChangeset for help on using the changeset viewer.