Title: [97730] trunk/Tools
Revision
97730
Author
[email protected]
Date
2011-10-18 02:11:48 -0700 (Tue, 18 Oct 2011)

Log Message

Build fix after r97672.

* Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (97729 => 97730)


--- trunk/Tools/ChangeLog	2011-10-18 09:09:30 UTC (rev 97729)
+++ trunk/Tools/ChangeLog	2011-10-18 09:11:48 UTC (rev 97730)
@@ -1,3 +1,9 @@
+2011-10-18  Ryosuke Niwa  <[email protected]>
+
+        Build fix after r97672.
+
+        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
+
 2011-10-17  Kent Tamura  <[email protected]>
 
         A follow-up of r97716.

Modified: trunk/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py (97729 => 97730)


--- trunk/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py	2011-10-18 09:09:30 UTC (rev 97729)
+++ trunk/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py	2011-10-18 09:11:48 UTC (rev 97730)
@@ -454,18 +454,14 @@
             def exit_code_from_summarized_results(self, unexpected_results):
                 return unexpected_results['num_regressions'] + unexpected_results['num_missing']
 
+        options, parsed_args = run_webkit_tests.parse_args(['--pixel-tests', '--no-new-test-results'])
         test_port = CustomExitCodePort(options=options, user=mocktool.MockUser())
         res, out, err, _ = logging_run(['--no-show-results',
             'failures/expected/missing_image.html',
             'failures/unexpected/missing_text.html',
             'failures/unexpected/text-image-checksum.html'],
             tests_included=True, filesystem=fs, record_results=True, port_obj=test_port)
-        file_list = fs.written_files.keys()
-        file_list.remove('/tmp/layout-test-results/tests_run0.txt')
         self.assertEquals(res, 2)
-        self.assertTrue(json_string.find('"num_regression":1') == -1)
-        self.assertTrue(json_string.find('"num_flaky":1') == -1)
-        self.assertTrue(json_string.find('"num_missing":1') != -1)
 
     def test_crash_with_stderr(self):
         fs = unit_test_filesystem()
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to