Mercurial > hg > audiodb
annotate tests/0026/run-test.sh @ 277:abfb26e08d9c audiodb-debian
Merge trunk changes -r326:386 into audiodb-debian branch.
Plus new debian/changelog version. (Should have used an epoch really,
but couldn't be bothered; TODO: work out a sane version numbering
policy).
author | mas01cr |
---|---|
date | Tue, 01 Jul 2008 09:12:40 +0000 |
parents | 6da72f0e086b |
children |
rev | line source |
---|---|
mas01cr@277 | 1 #! /bin/bash |
mas01cr@195 | 2 |
mas01cr@195 | 3 . ../test-utils.sh |
mas01cr@195 | 4 |
mas01cr@195 | 5 if [ -f testdb ]; then rm -f testdb; fi |
mas01cr@195 | 6 |
mas01cr@195 | 7 ${AUDIODB} -N -d testdb |
mas01cr@195 | 8 |
mas01cr@195 | 9 ${AUDIODB} -P -d testdb |
mas01cr@195 | 10 ${AUDIODB} -d testdb -P |
mas01cr@195 | 11 |
mas01cr@195 | 12 # should fail (no db given) |
mas01cr@195 | 13 expect_clean_error_exit ${AUDIODB} -P |
mas01cr@195 | 14 |
mas01cr@195 | 15 exit 104 |