Changeset 103943 in webkit


Ignore:
Timestamp:
Jan 3, 2012 9:00:13 AM (12 years ago)
Author:
mario@webkit.org
Message:

[GTK] run-gtk-test should ignore files with names without a "test" or "Test" prefix
https://bugs.webkit.org/show_bug.cgi?id=75474

Reviewed by Philippe Normand.

  • Scripts/run-gtk-tests: Ignore files whose name does not start

with a "test" (for WK1's API tests) or a "Test" prefix (for WK2).

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r103942 r103943  
     12012-01-03  Mario Sanchez Prada  <msanchez@igalia.com>
     2
     3        [GTK] run-gtk-test should ignore files with names without a "test" or "Test" prefix
     4        https://bugs.webkit.org/show_bug.cgi?id=75474
     5
     6        Reviewed by Philippe Normand.
     7
     8        * Scripts/run-gtk-tests: Ignore files whose name does not start
     9        with a "test" (for WK1's API tests) or a "Test" prefix (for WK2).
     10
    1112012-01-03  Alexander Færøy  <alexander.faeroy@nokia.com>
    212
  • trunk/Tools/Scripts/run-gtk-tests

    r103069 r103943  
    5353                continue
    5454            for test_file in os.listdir(absolute_test_dir):
     55                if not test_file.lower().startswith("test"):
     56                    continue
    5557                test_relative_path = os.path.join(test_dir, test_file)
    5658                if test_relative_path in self.SKIPPED:
Note: See TracChangeset for help on using the changeset viewer.