| OLD | NEW |
| 1 # Copyright (C) 2010 Google Inc. All rights reserved. | 1 # Copyright (C) 2010 Google Inc. All rights reserved. |
| 2 # | 2 # |
| 3 # Redistribution and use in source and binary forms, with or without | 3 # Redistribution and use in source and binary forms, with or without |
| 4 # modification, are permitted provided that the following conditions are | 4 # modification, are permitted provided that the following conditions are |
| 5 # met: | 5 # met: |
| 6 # | 6 # |
| 7 # * Redistributions of source code must retain the above copyright | 7 # * Redistributions of source code must retain the above copyright |
| 8 # notice, this list of conditions and the following disclaimer. | 8 # notice, this list of conditions and the following disclaimer. |
| 9 # * Redistributions in binary form must reproduce the above | 9 # * Redistributions in binary form must reproduce the above |
| 10 # copyright notice, this list of conditions and the following disclaimer | 10 # copyright notice, this list of conditions and the following disclaimer |
| (...skipping 454 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 465 return set(['failures/expected/skip_text.html', | 465 return set(['failures/expected/skip_text.html', |
| 466 'failures/unexpected/skip_pass.html', | 466 'failures/unexpected/skip_pass.html', |
| 467 'virtual/skipped/failures/expected']) | 467 'virtual/skipped/failures/expected']) |
| 468 | 468 |
| 469 def name(self): | 469 def name(self): |
| 470 return self._name | 470 return self._name |
| 471 | 471 |
| 472 def operating_system(self): | 472 def operating_system(self): |
| 473 return self._operating_system | 473 return self._operating_system |
| 474 | 474 |
| 475 def _path_to_wdiff(self): | |
| 476 return None | |
| 477 | |
| 478 def default_results_directory(self): | 475 def default_results_directory(self): |
| 479 return '/tmp/layout-test-results' | 476 return '/tmp/layout-test-results' |
| 480 | 477 |
| 481 def setup_test_run(self): | 478 def setup_test_run(self): |
| 482 pass | 479 pass |
| 483 | 480 |
| 484 def _driver_class(self): | 481 def _driver_class(self): |
| 485 return TestDriver | 482 return TestDriver |
| 486 | 483 |
| 487 def start_http_server(self, additional_dirs, number_of_drivers): | 484 def start_http_server(self, additional_dirs, number_of_drivers): |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 627 else: | 624 else: |
| 628 image = test.actual_image | 625 image = test.actual_image |
| 629 return DriverOutput(actual_text, image, test.actual_checksum, audio, | 626 return DriverOutput(actual_text, image, test.actual_checksum, audio, |
| 630 crash=(crash or web_process_crash), crashed_process_
name=crashed_process_name, | 627 crash=(crash or web_process_crash), crashed_process_
name=crashed_process_name, |
| 631 crashed_pid=crashed_pid, crash_log=crash_log, | 628 crashed_pid=crashed_pid, crash_log=crash_log, |
| 632 test_time=time.time() - start_time, timeout=test.tim
eout, error=test.error, pid=self.pid, | 629 test_time=time.time() - start_time, timeout=test.tim
eout, error=test.error, pid=self.pid, |
| 633 leak=test.leak) | 630 leak=test.leak) |
| 634 | 631 |
| 635 def stop(self): | 632 def stop(self): |
| 636 self.started = False | 633 self.started = False |
| OLD | NEW |