comparison tests/test-supportprogs/test-supportprogs.sh @ 119:7a31201dc42d test-reorg

Split out tests into individual directories, with simpler naming therein
author Chris Cannam
date Wed, 08 Oct 2014 15:08:57 +0100
parents tests/test-supportprogs.sh@581b1b150a4d
children a1300db6c63e
comparison
equal deleted inserted replaced
118:0fe5abb56a6e 119:7a31201dc42d
1 #!/bin/bash
2
3 fail() {
4 echo "Test failed: $1"
5 exit 1
6 }
7
8 xmllint --version 2>/dev/null || \
9 fail "Can't find required xmllint program"
10
11 rapper --version >/dev/null || \
12 fail "Can't find required rapper program"
13
14 exit 0
15