annotate tests/test-supportprogs.sh @ 24:18c42fbc1335

* Various fixes: ensure CSV feature writer closes files when finished with (rather than at end of run) to avoid running out of fds; bail properly with an exception with CSV writer can't write to output file; and other minor things
author Chris Cannam
date Tue, 08 Sep 2009 16:51:24 +0000
parents 581b1b150a4d
children
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