| OLD | NEW |
| 1 #!/usr/bin/python | 1 #!/usr/bin/python |
| 2 | 2 |
| 3 """ | 3 """ |
| 4 Copyright 2014 Google Inc. | 4 Copyright 2014 Google Inc. |
| 5 | 5 |
| 6 Use of this source code is governed by a BSD-style license that can be | 6 Use of this source code is governed by a BSD-style license that can be |
| 7 found in the LICENSE file. | 7 found in the LICENSE file. |
| 8 | 8 |
| 9 Test compare_configs.py | 9 Test compare_configs.py |
| 10 | 10 |
| 11 TODO(epoger): Create a command to update the expected results (in | 11 TODO(epoger): Create a command to update the expected results (in |
| 12 self._output_dir_expected) when appropriate. For now, you should: | 12 self._output_dir_expected) when appropriate. For now, you should: |
| 13 1. examine the results in self.output_dir_actual and make sure they are ok | 13 1. examine the results in self.output_dir_actual and make sure they are ok |
| 14 2. rm -rf self._output_dir_expected | 14 2. rm -rf self._output_dir_expected |
| 15 3. mv self.output_dir_actual self._output_dir_expected | 15 3. mv self.output_dir_actual self._output_dir_expected |
| 16 Although, if you're using an SVN checkout, this will blow away .svn directories | 16 Although, if you're using an SVN checkout, this will blow away .svn directories |
| 17 within self._output_dir_expected, which wouldn't be good... | 17 within self._output_dir_expected, which wouldn't be good... |
| 18 | 18 |
| 19 """ | 19 """ |
| 20 | 20 |
| 21 # System-level imports | 21 # System-level imports |
| 22 import os | 22 import os |
| 23 | 23 |
| 24 # Must fix up PYTHONPATH before importing from within Skia | 24 # Must fix up PYTHONPATH before importing from within Skia |
| 25 import fix_pythonpath # pylint: disable=W0611 | 25 import rs_fixpypath # pylint: disable=W0611 |
| 26 | 26 |
| 27 # Imports from within Skia | 27 # Imports from within Skia |
| 28 import base_unittest | 28 import base_unittest |
| 29 import compare_configs | 29 import compare_configs |
| 30 import gm_json | 30 import gm_json |
| 31 import results | 31 import results |
| 32 | 32 |
| 33 | 33 |
| 34 class CompareConfigsTest(base_unittest.TestCase): | 34 class CompareConfigsTest(base_unittest.TestCase): |
| 35 | 35 |
| (...skipping 15 matching lines...) Expand all Loading... |
| 51 """Mock version of BaseComparisons.get_timestamp() for testing.""" | 51 """Mock version of BaseComparisons.get_timestamp() for testing.""" |
| 52 return 12345678 | 52 return 12345678 |
| 53 | 53 |
| 54 | 54 |
| 55 def main(): | 55 def main(): |
| 56 base_unittest.main(CompareConfigsTest) | 56 base_unittest.main(CompareConfigsTest) |
| 57 | 57 |
| 58 | 58 |
| 59 if __name__ == '__main__': | 59 if __name__ == '__main__': |
| 60 main() | 60 main() |
| OLD | NEW |