Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(304)

Unified Diff: gm/rebaseline_server/results_test.py

Issue 208243003: rebaseline_server: rename results.py to compare_to_expectations.py (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: rebase Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gm/rebaseline_server/results.py ('k') | gm/rebaseline_server/server.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gm/rebaseline_server/results_test.py
diff --git a/gm/rebaseline_server/results_test.py b/gm/rebaseline_server/results_test.py
deleted file mode 100755
index 6d7b05fcd335632c3eb199f3d97e9885389f2a18..0000000000000000000000000000000000000000
--- a/gm/rebaseline_server/results_test.py
+++ /dev/null
@@ -1,56 +0,0 @@
-#!/usr/bin/python
-
-"""
-Copyright 2013 Google Inc.
-
-Use of this source code is governed by a BSD-style license that can be
-found in the LICENSE file.
-
-Test results.py
-
-TODO(epoger): Create a command to update the expected results (in
-self._output_dir_expected) when appropriate. For now, you should:
-1. examine the results in self._output_dir_actual and make sure they are ok
-2. rm -rf self._output_dir_expected
-3. mv self._output_dir_actual self._output_dir_expected
-Although, if you're using an SVN checkout, this will blow away .svn directories
-within self._output_dir_expected, which wouldn't be good...
-
-"""
-
-import os
-import sys
-
-# Imports from within Skia
-import base_unittest
-import results
-import gm_json # must import results first, so that gm_json will be in sys.path
-
-
-class ResultsTest(base_unittest.TestCase):
-
- def test_gm(self):
- """Process results of a GM run with the Results object."""
- results_obj = results.Results(
- actuals_root=os.path.join(self._input_dir, 'gm-actuals'),
- expected_root=os.path.join(self._input_dir, 'gm-expectations'),
- generated_images_root=self._temp_dir,
- diff_base_url='/static/generated-images')
- results_obj.get_timestamp = mock_get_timestamp
- gm_json.WriteToFile(
- results_obj.get_packaged_results_of_type(
- results.KEY__HEADER__RESULTS_ALL),
- os.path.join(self._output_dir_actual, 'gm.json'))
-
-
-def mock_get_timestamp():
- """Mock version of Results.get_timestamp() for testing."""
- return 12345678
-
-
-def main():
- base_unittest.main(ResultsTest)
-
-
-if __name__ == '__main__':
- main()
« no previous file with comments | « gm/rebaseline_server/results.py ('k') | gm/rebaseline_server/server.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698