annotate tests/0014/run-test.sh @ 239:2cc06e5b05a5

Merge refactoring branch. Bug fixes: * 64-bit powertable bug; * -inf - -inf bug; * use new times information; * plus short track, O2_MAXFILES and structure padding ABI fixes (already backported) Major code changes: * split source into functional units, known as 'files'; * Reporter class for accumulating and reporting on query results; * much OAOOization, mostly from above: net 800 LOC (25%) shorter.
author mas01cr
date Thu, 13 Dec 2007 14:23:32 +0000
parents 7e3483e53c3b
children fe4dc39b2dd7
rev   line source
mas01cr@88 1 #! /bin/sh
mas01cr@88 2
mas01cr@88 3 . ../test-utils.sh
mas01cr@88 4
mas01cr@88 5 if [ -f testdb ]; then rm -f testdb; fi
mas01cr@88 6
mas01cr@88 7 ${AUDIODB} -d testdb -N
mas01cr@88 8
mas01cr@239 9 ${AUDIODB} -d testdb -L
mas01cr@239 10
mas01cr@88 11 intstring 2 > testfeature
mas01cr@88 12 floatstring 0 1 >> testfeature
mas01cr@88 13 floatstring 1 0 >> testfeature
mas01cr@88 14
mas01cr@88 15 ${AUDIODB} -d testdb -I -f testfeature
mas01cr@88 16
mas01cr@88 17 echo "query point (0.0,0.5)"
mas01cr@88 18 intstring 2 > testquery
mas01cr@88 19 floatstring 0 0.5 >> testquery
mas01cr@88 20
mas01cr@88 21 start_server ${AUDIODB} 10014
mas01cr@88 22
mas01cr@88 23 ${AUDIODB} -c localhost:10014 -d testdb -Q point -f testquery > testoutput
mas01cr@88 24 echo testfeature 0.5 0 0 > test-expected-output
mas01cr@88 25 echo testfeature 0 0 1 >> test-expected-output
mas01cr@88 26 cmp testoutput test-expected-output
mas01cr@88 27 ${AUDIODB} -c localhost:10014 -d testdb -Q point -f testquery -n 1 > testoutput
mas01cr@88 28 echo testfeature 0.5 0 0 > test-expected-output
mas01cr@88 29 cmp testoutput test-expected-output
mas01cr@88 30
mas01cr@88 31 check_server $!
mas01cr@88 32
mas01cr@88 33 echo "query point (0.5,0.0)"
mas01cr@88 34 intstring 2 > testquery
mas01cr@88 35 floatstring 0.5 0 >> testquery
mas01cr@88 36
mas01cr@88 37 ${AUDIODB} -c localhost:10014 -d testdb -Q point -f testquery > testoutput
mas01cr@88 38 echo testfeature 0.5 0 1 > test-expected-output
mas01cr@88 39 echo testfeature 0 0 0 >> test-expected-output
mas01cr@88 40 cmp testoutput test-expected-output
mas01cr@88 41 ${AUDIODB} -c localhost:10014 -d testdb -Q point -f testquery -n 1 > testoutput
mas01cr@88 42 echo testfeature 0.5 0 1 > test-expected-output
mas01cr@88 43 cmp testoutput test-expected-output
mas01cr@88 44
mas01cr@88 45 stop_server $!
mas01cr@88 46
mas01cr@88 47 exit 104