the default behaviour of disabling HTTP tests for Qt,
Gtk and Wx.
Reviewed by Alp Toker.
* Scripts/run-webkit-tests:
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@29674
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2008-01-19 Mark Rowe <mrowe@apple.com>
+
+ Reviewed by Alp Toker.
+
+ Allow the --http flag to run-webkit-tests to override
+ the default behaviour of disabling HTTP tests for Qt,
+ Gtk and Wx.
+
+ * Scripts/run-webkit-tests:
+
2008-01-19 David Kilzer <ddkilzer@apple.com>
<rdar://problem/5695344> check-for-global-initializers script never checks any object files
my $reverseTests = 0;
my $randomizeTests = 0;
+# Default to --no-http for Qt, Gtk and wx for now.
+$testHTTP = 0 if (isQt() || isGtk() || isWx());
+
my $expectedTag = "expected";
my $actualTag = "actual";
my $diffsTag = "diffs";
print STDERR "\nWARNING: Running more than 1000 tests at a time with MallocStackLogging enabled may cause a crash.\n\n";
}
-# Force --no-http for Qt/Linux, for now.
-$testHTTP = 0 if (isQt() || isGtk());
-
# Stack logging does not play well with QuickTime on Tiger (rdar://problem/5537157)
$testMedia = 0 if $shouldCheckLeaks && isTiger();