Mercurial > hg > sonic-annotator
annotate tests/test-supportprogs/test-supportprogs.sh @ 124:c72889726a98
Fix the broken test that failed after the previous fix!
author | Chris Cannam |
---|---|
date | Wed, 08 Oct 2014 18:50:44 +0100 |
parents | 7a31201dc42d |
children | a1300db6c63e |
rev | line source |
---|---|
Chris@0 | 1 #!/bin/bash |
Chris@0 | 2 |
Chris@0 | 3 fail() { |
Chris@0 | 4 echo "Test failed: $1" |
Chris@0 | 5 exit 1 |
Chris@0 | 6 } |
Chris@0 | 7 |
Chris@0 | 8 xmllint --version 2>/dev/null || \ |
Chris@0 | 9 fail "Can't find required xmllint program" |
Chris@0 | 10 |
Chris@0 | 11 rapper --version >/dev/null || \ |
Chris@0 | 12 fail "Can't find required rapper program" |
Chris@0 | 13 |
Chris@0 | 14 exit 0 |
Chris@0 | 15 |