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

Unified Diff: tools/tests/run.sh

Issue 15813016: Preparations for running skimage tool on bots. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: 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 side-by-side diff with in-line comments
Download patch
Index: tools/tests/run.sh
diff --git a/tools/tests/run.sh b/tools/tests/run.sh
index 30a7882e5d4d418746ea22dc3579edeb09e15d0e..76e5458f766f65e076cb92b4a6e495f928b060b5 100755
--- a/tools/tests/run.sh
+++ b/tools/tests/run.sh
@@ -160,4 +160,13 @@ benchgraph_download_rawdata $PLATFORM 7679 "$BENCHDATA_FILE_SUFFIXES_YES_INDIVID
benchgraph_download_rawdata $PLATFORM 7686 "$BENCHDATA_FILE_SUFFIXES_YES_INDIVIDUAL_TILES"
benchgraph_test $PLATFORM
+COMMAND="python tools/tests/skimage_self_test.py"
epoger 2013/06/05 14:21:45 If it's not too much trouble, I think it would be
scroggo 2013/06/05 15:30:39 Done. Moved to https://codereview.chromium.org/157
+echo "$COMMAND"
+$COMMAND
+ret=$?
+if [ $ret -ne 0 ]; then
+ echo "skimage self tests failed."
+ exit 1
+fi
+
echo "All tests passed."

Powered by Google App Engine
This is Rietveld 408576698