diff options
author | Daniel Friesel <derf@finalrewind.org> | 2016-02-15 22:10:06 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2016-02-18 20:48:32 +0100 |
commit | e35ddf2ab4261b7fee65c8979f1aa057415cb54f (patch) | |
tree | f10e6b64c5c62c340dd40280347bfe34cc338ee9 /Makefile | |
parent | 14b2943aef3be1ff05e6746e90def15a997ebada (diff) |
skip all tests on debian arm* / mips* (broken Imlib2, again)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -12,7 +12,11 @@ build-applications: @${MAKE} -C share/applications test: all - @PACKAGE=${PACKAGE} prove test/feh.t test/mandoc.t + @if ! uname -m | fgrep -q -e arm -e mips || ! test -e /etc/debian_version; then \ + PACKAGE=${PACKAGE} prove test/feh.t test/mandoc.t; \ + else \ + PACKAGE=${PACKAGE} prove test/feh.t test/mandoc.t || cat test/imlib2-bug-notice; \ + fi test-x11: all test/run-interactive |