Skip to content

Commit

Permalink
Issue #24: added an exception for NumPy tests as they do not support …
Browse files Browse the repository at this point in the history
…UYVY yet
  • Loading branch information
dzhoshkun committed Oct 18, 2018
1 parent 88cfce4 commit f7bdf42
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/tests/run-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,11 @@ elif [ "$1" = "numpy" ]; then
if [ $# -ne "2" ]; then
args_ok=false
else
parse_colour $2
if [ "$2" = "uyvy" ]; then
args_ok=false
else
parse_colour $2
fi
fi
elif [ "$1" = "epiphan-dvi2pcieduo" ]; then
printf "$1 option not implemented yet\n" # TODO
Expand Down

0 comments on commit f7bdf42

Please sign in to comment.