tests: amplitude

This commit is contained in:
Kamal Mostafa 2012-08-25 10:07:26 -07:00
parent dd6040336d
commit e59931beba
3 changed files with 32 additions and 3 deletions

27
tests/test-30-amplitude Executable file
View File

@ -0,0 +1,27 @@
#!/bin/bash
flags="1200 $*"
let count=0
let fail=0
function try_tx_rx_ampl
{
a="$1"
echo -n "$a "
let count++
./self-test testdata-ascii.txt --volume $a $flags -- $flags || let fail++
}
for ampl in 3.50 1.00 0.30 0.01 " E "
do
try_tx_rx_ampl "$ampl"
done
if [ $fail -eq 0 ]
then
echo " (all $count amplitude tests passed)"
else
echo " ($fail/$count amplitude tests failed)"
fi
exit $fail

2
tests/test-31-amplitude-float Executable file
View File

@ -0,0 +1,2 @@
#!/bin/bash
exec ./test-30-amplitude --float