HomeSort by relevance Sort by last modified time
    Searched refs:wdiff (Results 1 - 3 of 3) sorted by null

  /external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
base.py 120 # to gracefully handle cases where wdiff is not installed,
123 # wdiff, assume it's not available. This will leak one
125 # wdiff would be run.
708 def _format_wdiff_output_as_html(self, wdiff):
709 wdiff = cgi.escape(wdiff)
710 wdiff = wdiff.replace(self._WDIFF_DEL, "<span class=del>")
711 wdiff = wdiff.replace(self._WDIFF_ADD, "<span class=add>"
    [all...]
base_unittest.py 56 port._path_to_wdiff = lambda: "/path/to/wdiff"
59 "/path/to/wdiff",
101 # object for the wdiff path, but since we don't know what
104 wdiff_path = executive.run_command(["which", "wdiff"]).rstrip()
115 wdiff = port._run_wdiff(actual.name, expected.name)
117 self.assertEqual(wdiff, expected_wdiff)
120 wdiff = port.wdiff_text(actual.name, expected.name)
121 self.assertEqual(wdiff, expected_wdiff)
122 # wdiff should still be available after running wdiff_text with a valid diff.
130 # wdiff will still be available after running wdiff_text with invalid paths
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
test_result_writer.py 105 FILENAME_SUFFIX_WDIFF = "-wdiff.html"
193 # Shell out to wdiff to get colored inline diffs.
194 wdiff = self._port.wdiff_text(expected_filename, actual_filename)
196 fs.write_binary_file(wdiff_filename, wdiff)

Completed in 189 milliseconds