Mercurial > hg > audiodb
view tests/0001/run-test.sh @ 51:f76b4182ecc8
Add tests for sequence search. They don't work with the code as it
currently stands, but I have a local fix.
author | mas01cr |
---|---|
date | Wed, 19 Sep 2007 15:07:38 +0000 |
parents | a7aad4c50cb9 |
children | f258a0258755 |
line wrap: on
line source
#! /bin/sh . ../test-utils.sh if [ -f testdb ]; then rm -f testdb; fi # creation ${AUDIODB} -N -d testdb stat testdb # should fail (testdb exists) ${AUDIODB} -N -d testdb && exit 1 # should fail (no db given) ${AUDIODB} -N && exit 1 exit 104