diff options
author | scroggo@google.com <scroggo@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2013-06-07 12:40:35 +0000 |
---|---|---|
committer | scroggo@google.com <scroggo@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2013-06-07 12:40:35 +0000 |
commit | e762dad67ceec4fd6080f821eab72cfdc1e3881f (patch) | |
tree | 29f31ca5d26df6b42182d88b2957a920e2787a6e /tools/tests | |
parent | a009083bd10353b91903cab84362b0e744d3b3b7 (diff) |
Run skimage as part of run.sh
Test skimage to ensure that it does not break.
Split off from https://codereview.chromium.org/15813016/
BUG=http://code.google.com/p/skia/issues/detail?id=1241
R=epoger@google.com
Review URL: https://codereview.chromium.org/15774017
git-svn-id: http://skia.googlecode.com/svn/trunk@9473 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'tools/tests')
-rwxr-xr-x | tools/tests/run.sh | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/tools/tests/run.sh b/tools/tests/run.sh index 940f59732f..cfc3c5bfa7 100755 --- a/tools/tests/run.sh +++ b/tools/tests/run.sh @@ -191,6 +191,19 @@ benchgraph_download_rawdata $PLATFORM 7686 "$BENCHDATA_FILE_SUFFIXES_YES_INDIVID benchgraph_test $PLATFORM # +# Run self test for skimage ... +# + +COMMAND="python tools/tests/skimage_self_test.py" +echo "$COMMAND" +$COMMAND +ret=$? +if [ $ret -ne 0 ]; then + echo "skimage self tests failed." + exit 1 +fi + +# # Test rebaseline.py ... # @@ -200,5 +213,4 @@ rebaseline_test "--tests test1 test2 --configs 565 8888 --subdirs base-android-g rebaseline_test "--tests test1 test2" "$REBASELINE_OUTPUT/all" rebaseline_test "--json_base_url file:$REBASELINE_INPUT/json1 --subdirs base-android-galaxy-nexus base-shuttle-win7-intel-float" "$REBASELINE_OUTPUT/using-json1" - echo "All tests passed." |