Changeset 109491 in webkit


Ignore:
Timestamp:
Mar 1, 2012 7:37:18 PM (12 years ago)
Author:
dpranke@chromium.org
Message:

webkitpy: test_run_test_pause_before_testing is failing after r109482
https://bugs.webkit.org/show_bug.cgi?id=80084

Unreviewed, build fix.

Fixes the test string compare to ignore the time spent running
the tests.

  • Scripts/webkitpy/performance_tests/perftestsrunner_unittest.py:

(test_run_test_pause_before_testing):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r109490 r109491  
     12012-03-01  Dirk Pranke  <dpranke@chromium.org>
     2
     3        webkitpy: test_run_test_pause_before_testing is failing after r109482
     4        https://bugs.webkit.org/show_bug.cgi?id=80084
     5
     6        Unreviewed, build fix.
     7
     8        Fixes the test string compare to ignore the time spent running
     9        the tests.
     10
     11        * Scripts/webkitpy/performance_tests/perftestsrunner_unittest.py:
     12        (test_run_test_pause_before_testing):
     13
    1142012-03-01  Dirk Pranke  <dpranke@chromium.org>
    215
  • trunk/Tools/Scripts/webkitpy/performance_tests/perftestsrunner_unittest.py

    r109242 r109491  
    196196            _, stderr, logs = output.restore_output()
    197197            self.assertEqual(stderr, "Ready to run test?\n")
    198             self.assertEqual(logs, "Running inspector/pass.html (1 of 1)\n\n")
     198            self.assertTrue("Running inspector/pass.html (1 of 1)" in logs)
    199199
    200200    def test_run_test_set_for_parser_tests(self):
Note: See TracChangeset for help on using the changeset viewer.