Changeset 29674 in webkit


Ignore:
Timestamp:
Jan 19, 2008 10:51:36 AM (16 years ago)
Author:
mrowe@apple.com
Message:

Allow the --http flag to run-webkit-tests to override
the default behaviour of disabling HTTP tests for Qt,
Gtk and Wx.

Reviewed by Alp Toker.

  • Scripts/run-webkit-tests:
Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r29668 r29674  
     12008-01-19  Mark Rowe  <mrowe@apple.com>
     2
     3        Reviewed by Alp Toker.
     4
     5        Allow the --http flag to run-webkit-tests to override
     6        the default behaviour of disabling HTTP tests for Qt,
     7        Gtk and Wx.
     8
     9        * Scripts/run-webkit-tests:
     10
    1112008-01-19  David Kilzer  <ddkilzer@apple.com>
    212
  • trunk/WebKitTools/Scripts/run-webkit-tests

    r29595 r29674  
    124124my $reverseTests = 0;
    125125my $randomizeTests = 0;
     126
     127# Default to --no-http for Qt, Gtk and wx for now.
     128$testHTTP = 0 if (isQt() || isGtk() || isWx());
    126129
    127130my $expectedTag = "expected";
     
    249252    print STDERR "\nWARNING: Running more than 1000 tests at a time with MallocStackLogging enabled may cause a crash.\n\n";
    250253}
    251 
    252 # Force --no-http for Qt/Linux, for now.
    253 $testHTTP = 0 if (isQt() || isGtk());
    254254
    255255# Stack logging does not play well with QuickTime on Tiger (rdar://problem/5537157)
Note: See TracChangeset for help on using the changeset viewer.