Mercurial > hg > audiodb
annotate tests/0009/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 | 15b8ff55ea5b |
children |
rev | line source |
---|---|
mas01cr@277 | 1 #! /bin/bash |
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} -d testdb -N |
mas01cr@78 | 8 |
mas01cr@243 | 9 ${AUDIODB} -d testdb -L |
mas01cr@243 | 10 |
mas01cr@78 | 11 intstring 2 > testfeature01 |
mas01cr@78 | 12 floatstring 0 1 >> testfeature01 |
mas01cr@78 | 13 intstring 2 > testfeature10 |
mas01cr@78 | 14 floatstring 1 0 >> testfeature10 |
mas01cr@78 | 15 |
mas01cr@78 | 16 ${AUDIODB} -d testdb -I -f testfeature01 |
mas01cr@78 | 17 ${AUDIODB} -d testdb -I -f testfeature10 |
mas01cr@78 | 18 |
mas01cr@78 | 19 echo "query point (0.0,0.5)" |
mas01cr@78 | 20 intstring 2 > testquery |
mas01cr@78 | 21 floatstring 0 0.5 >> testquery |
mas01cr@78 | 22 |
mas01cr@78 | 23 ${AUDIODB} -d testdb -Q track -l 1 -f testquery > testoutput |
mas01cr@78 | 24 echo testfeature01 0.5 0 0 > test-expected-output |
mas01cr@78 | 25 echo testfeature10 0 0 0 >> test-expected-output |
mas01cr@78 | 26 cmp testoutput test-expected-output |
mas01cr@78 | 27 ${AUDIODB} -d testdb -Q track -l 1 -f testquery -r 1 > testoutput |
mas01cr@78 | 28 echo testfeature01 0.5 0 0 > test-expected-output |
mas01cr@78 | 29 cmp testoutput test-expected-output |
mas01cr@78 | 30 |
mas01cr@78 | 31 echo "query point (0.5,0.0)" |
mas01cr@78 | 32 intstring 2 > testquery |
mas01cr@78 | 33 floatstring 0.5 0 >> testquery |
mas01cr@78 | 34 |
mas01cr@78 | 35 ${AUDIODB} -d testdb -Q track -l 1 -f testquery > testoutput |
mas01cr@78 | 36 echo testfeature10 0.5 0 0 > test-expected-output |
mas01cr@78 | 37 echo testfeature01 0 0 0 >> test-expected-output |
mas01cr@78 | 38 cmp testoutput test-expected-output |
mas01cr@78 | 39 ${AUDIODB} -d testdb -Q track -l 1 -f testquery -r 1 > testoutput |
mas01cr@78 | 40 echo testfeature10 0.5 0 0 > test-expected-output |
mas01cr@78 | 41 cmp testoutput test-expected-output |
mas01cr@78 | 42 |
mas01cr@78 | 43 exit 104 |