Changeset 96214 in webkit


Ignore:
Timestamp:
Sep 28, 2011 4:25:41 AM (13 years ago)
Author:
Philippe Normand
Message:

[GTK] missing WebKit2 support in run-gtk-tests
https://bugs.webkit.org/show_bug.cgi?id=68992

Rubber-stamped by Andreas Kling.

  • Scripts/run-gtk-tests: Get the WebKit2 tests to run from the

webkit2 directory.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r96207 r96214  
     12011-09-28  Philippe Normand  <pnormand@igalia.com>
     2
     3        [GTK] missing WebKit2 support in run-gtk-tests
     4        https://bugs.webkit.org/show_bug.cgi?id=68992
     5
     6        Rubber-stamped by Andreas Kling.
     7
     8        * Scripts/run-gtk-tests: Get the WebKit2 tests to run from the
     9        webkit2 directory.
     10
    1112011-09-27  Philippe Normand  <pnormand@igalia.com>
    212
  • trunk/Tools/Scripts/run-gtk-tests

    r94388 r96214  
    2929
    3030my $productDir = productDir();
    31 my @unitTests = glob  $productDir . "/Programs/unittests/*";
     31my $testsDir = $productDir . "/Programs/unittests" ;
     32my @unitTests = glob  $testsDir . "/test*";
     33my @webkit2UnitTests = glob  $testsDir . "/webkit2/test*";
     34push @unitTests, @webkit2UnitTests;
    3235if ($#unitTests < 1) {
    3336    die "ERROR: tests not found in $productDir.\n";
Note: See TracChangeset for help on using the changeset viewer.