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

Side by Side Diff: tools/tests/run.sh

Issue 17379004: rebaseline.py: split image-based rebaselining, which will go away soon, into its own script (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: call_JsonRebaseliner_if_json_file_found Created 7 years, 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 #!/bin/bash 1 #!/bin/bash
2 2
3 # Tests for our tools. 3 # Tests for our tools.
4 # 4 #
5 # TODO: currently, this only passes on Linux (which is the platform that 5 # TODO: currently, this only passes on Linux (which is the platform that
6 # the housekeeper bot runs on, e.g. 6 # the housekeeper bot runs on, e.g.
7 # http://70.32.156.51:10117/builders/Skia_PerCommit_House_Keeping/builds/1415/st eps/RunToolSelfTests/logs/stdio ) 7 # http://70.32.156.51:10117/builders/Skia_PerCommit_House_Keeping/builds/1415/st eps/RunToolSelfTests/logs/stdio )
8 # See https://code.google.com/p/skia/issues/detail?id=677 8 # See https://code.google.com/p/skia/issues/detail?id=677
9 # ('make tools/tests/run.sh work cross-platform') 9 # ('make tools/tests/run.sh work cross-platform')
10 # Ideally, these tests should pass on all development platforms... 10 # Ideally, these tests should pass on all development platforms...
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after
206 # 206 #
207 # Test rebaseline.py ... 207 # Test rebaseline.py ...
208 # 208 #
209 209
210 REBASELINE_INPUT=tools/tests/rebaseline/input 210 REBASELINE_INPUT=tools/tests/rebaseline/input
211 REBASELINE_OUTPUT=tools/tests/rebaseline/output 211 REBASELINE_OUTPUT=tools/tests/rebaseline/output
212 rebaseline_test "--json-base-url file:$REBASELINE_INPUT/json1 --tests test1 test 2 --configs 565 8888 --subdirs base-android-galaxy-nexus base-shuttle-win7-intel -float" "$REBASELINE_OUTPUT/subset" 212 rebaseline_test "--json-base-url file:$REBASELINE_INPUT/json1 --tests test1 test 2 --configs 565 8888 --subdirs base-android-galaxy-nexus base-shuttle-win7-intel -float" "$REBASELINE_OUTPUT/subset"
213 rebaseline_test "--json-base-url file:nonexistent-path --tests test1 test2" "$RE BASELINE_OUTPUT/all" 213 rebaseline_test "--json-base-url file:nonexistent-path --tests test1 test2" "$RE BASELINE_OUTPUT/all"
214 rebaseline_test "--json-base-url file:$REBASELINE_INPUT/json1 --subdirs base-and roid-galaxy-nexus base-shuttle-win7-intel-float" "$REBASELINE_OUTPUT/using-json1 " 214 rebaseline_test "--json-base-url file:$REBASELINE_INPUT/json1 --subdirs base-and roid-galaxy-nexus base-shuttle-win7-intel-float" "$REBASELINE_OUTPUT/using-json1 "
215 rebaseline_test "--json-base-url file:$REBASELINE_INPUT/json1 --subdirs base-and roid-galaxy-nexus base-shuttle-win7-intel-float --add-new" "$REBASELINE_OUTPUT/u sing-json1-add-new" 215 rebaseline_test "--json-base-url file:$REBASELINE_INPUT/json1 --subdirs base-and roid-galaxy-nexus base-shuttle-win7-intel-float --add-new" "$REBASELINE_OUTPUT/u sing-json1-add-new"
216 rebaseline_test "--json-base-url file:$REBASELINE_INPUT/json1 --subdirs base-and roid-galaxy-nexus base-shuttle-win7-intel-float --expectations-root $REBASELINE_ INPUT/json1" "$REBASELINE_OUTPUT/using-json1-expectations"
epoger 2013/06/18 19:11:38 Added a new test that points at an --expectations-
216 217
217 echo "All tests passed." 218 echo "All tests passed."
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698