annotate tests/0002/run-test.sh @ 126:b9f1c375f28a audiodb-debian

Merge trunk changes -r143:145 to audiodb-debian branch (+ new debian/changelog version)
author mas01cr
date Wed, 17 Oct 2007 14:52:39 +0000
parents 06922d637752
children abfb26e08d9c
rev   line source
mas01cr@78 1 #! /bin/sh
mas01cr@78 2
mas01cr@78 3 . ../test-utils.sh
mas01cr@78 4
mas01cr@78 5 if [ -f testdb ]; then rm -f testdb; fi
mas01cr@78 6
mas01cr@78 7 ${AUDIODB} -N -d testdb
mas01cr@78 8
mas01cr@78 9 # FIXME: at some point we will want to test that some relevant
mas01cr@78 10 # information is being printed
mas01cr@78 11 ${AUDIODB} -S -d testdb
mas01cr@78 12 ${AUDIODB} -d testdb -S
mas01cr@78 13
mas01cr@78 14 # should fail (no db given)
mas01cr@78 15 expect_clean_error_exit ${AUDIODB} -S
mas01cr@78 16
mas01cr@78 17 exit 104