view tests/0001/run-test.sh @ 245:0d99b008fd6b 0.8.preview

Improve copyright message from audioDB -H Also give audioDB a less optimistic version number, of 0.8.preview. Envisaged progress: * 0.9.beta in the New Year sometime; * 1.0 mid- to end-February.
author mas01cr
date Mon, 17 Dec 2007 16:17:45 +0000
parents f258a0258755
children fe4dc39b2dd7
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)
expect_clean_error_exit ${AUDIODB} -N -d testdb

# should fail (no db given)
expect_clean_error_exit ${AUDIODB} -N

exit 104