Changeset 52142 in webkit


Ignore:
Timestamp:
Dec 15, 2009 12:57:31 AM (14 years ago)
Author:
abarth@webkit.org
Message:

2009-12-15 Adam Barth <abarth@webkit.org>

Reviewed by Eric Seidel.

scm_unittest.py is too slow
https://bugs.webkit.org/show_bug.cgi?id=31818

Now we don't run the SCM unit tests unless we get the --all flag on the
command line. Eric and I were commenting out this test because it was
too painful to run.

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

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r52138 r52142  
     12009-12-15  Adam Barth  <abarth@webkit.org>
     2
     3        Reviewed by Eric Seidel.
     4
     5        scm_unittest.py is too slow
     6        https://bugs.webkit.org/show_bug.cgi?id=31818
     7
     8        Now we don't run the SCM unit tests unless we get the --all flag on the
     9        command line.  Eric and I were commenting out this test because it was
     10        too painful to run.
     11
     12        * Scripts/run-webkit-unittests:
     13
    1142009-12-14  Adam Barth  <abarth@webkit.org>
    215
  • trunk/WebKitTools/Scripts/run-webkit-unittests

    r52135 r52142  
    2828# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    2929
     30import sys
    3031import unittest
    3132
     
    4344from modules.logging_unittest import *
    4445from modules.multicommandtool_unittest import *
    45 from modules.scm_unittest import *
    4646from modules.webkitport_unittest import *
    4747from modules.workqueue_unittest import *
    4848
    4949if __name__ == "__main__":
     50    # FIXME: This is a hack, but I'm tired of commenting out the test.
     51    #        See https://bugs.webkit.org/show_bug.cgi?id=31818
     52    if len(sys.argv) > 1 and sys.argv[1] == "--all":
     53        sys.argv.remove("--all")
     54        from modules.scm_unittest import *
     55
    5056    unittest.main()
Note: See TracChangeset for help on using the changeset viewer.