Chromium Code Reviews| 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." |