comparison tests/test-supportprogs/test-supportprogs.sh @ 122:eb0f3a2029b8

Merge from test-reorg branch
author Chris Cannam
date Wed, 08 Oct 2014 15:38:48 +0100
parents 7a31201dc42d
children a1300db6c63e
comparison
equal deleted inserted replaced
117:5be4995f4029 122:eb0f3a2029b8
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