Mercurial > hg > audiodb
view tests/0015/run-test.sh @ 381:9742ea0ac33d
API const correctness.
The char *path arguments to audiodb_open() and audiodb_create() should
be const; make it so.
Also arrange for the datasize, ntracks and datadim arguments to
audiodb_create() to be unsigned to match the fields in the internal
audioDB class. Technically this is an ABI change, but since nothing is
calling this function with anything other than zero arguments yet
(correct me if I'm wrong) no-one should notice. (If you notice, shout)
author | mas01cr |
---|---|
date | Fri, 21 Nov 2008 14:32:27 +0000 |
parents | 6066d75a6d39 |
children |
line wrap: on
line source
#! /bin/bash . ../test-utils.sh if [ -f testdb ]; then rm -f testdb; fi start_server ${AUDIODB} 10015 ${AUDIODB} -d testdb -N ${AUDIODB} -c localhost:10015 -d testdb -S > test1 ${AUDIODB} -S -c localhost:10015 -d testdb > test2 ${AUDIODB} -S -d testdb -c localhost:10015 > test3 cat > testoutput <<EOF numFiles = 0 dim = 0 length = 0 dudCount = 0 nullCount = 0 flags = 0 EOF cmp test1 test2 cmp test2 test3 cmp test3 testoutput check_server $! expect_client_failure ${AUDIODB} -c localhost:10015 -S -d /dev/null expect_client_failure ${AUDIODB} -c localhost:10015 -S -d /tmp/foo-does-not-exist check_server $! stop_server $! exit 104