Title: [96214] trunk/Tools
- Revision
- 96214
- Author
- [email protected]
- Date
- 2011-09-28 04:25:41 -0700 (Wed, 28 Sep 2011)
Log 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.
Modified Paths
Diff
Modified: trunk/Tools/ChangeLog (96213 => 96214)
--- trunk/Tools/ChangeLog 2011-09-28 10:56:05 UTC (rev 96213)
+++ trunk/Tools/ChangeLog 2011-09-28 11:25:41 UTC (rev 96214)
@@ -1,3 +1,13 @@
+2011-09-28 Philippe Normand <[email protected]>
+
+ [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.
+
2011-09-27 Philippe Normand <[email protected]>
[GTK] build-webkit --no-webkit2 still builds WebKit2
Modified: trunk/Tools/Scripts/run-gtk-tests (96213 => 96214)
--- trunk/Tools/Scripts/run-gtk-tests 2011-09-28 10:56:05 UTC (rev 96213)
+++ trunk/Tools/Scripts/run-gtk-tests 2011-09-28 11:25:41 UTC (rev 96214)
@@ -28,7 +28,10 @@
setConfiguration();
my $productDir = productDir();
-my @unitTests = glob $productDir . "/Programs/unittests/*";
+my $testsDir = $productDir . "/Programs/unittests" ;
+my @unitTests = glob $testsDir . "/test*";
+my @webkit2UnitTests = glob $testsDir . "/webkit2/test*";
+push @unitTests, @webkit2UnitTests;
if ($#unitTests < 1) {
die "ERROR: tests not found in $productDir.\n";
}
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes