mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-03-04 01:37:14 +00:00
Sorted out fixed point builds of the V.22bis modem
This commit is contained in:
parent
d1b98ab388
commit
f088d971f3
16
libs/spandsp/tests/v17_tests.sh
Executable file
16
libs/spandsp/tests/v17_tests.sh
Executable file
@ -0,0 +1,16 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
STDOUT_DEST=xyzzy
|
||||||
|
STDERR_DEST=xyzzy2
|
||||||
|
|
||||||
|
for OPTS in "-b 14400 -s -42 -n -66" "-b 12000 -s -42 -n -61" "-b 9600 -s -42 -n -59" "-b 7200 -s -42 -n -56"
|
||||||
|
do
|
||||||
|
./v17_tests ${OPTS} >$STDOUT_DEST 2>$STDERR_DEST
|
||||||
|
RETVAL=$?
|
||||||
|
if [ $RETVAL != 0 ]
|
||||||
|
then
|
||||||
|
echo v17_tests ${OPTS} failed!
|
||||||
|
exit $RETVAL
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
echo v17_tests completed OK
|
16
libs/spandsp/tests/v27ter_tests.sh
Executable file
16
libs/spandsp/tests/v27ter_tests.sh
Executable file
@ -0,0 +1,16 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
STDOUT_DEST=xyzzy
|
||||||
|
STDERR_DEST=xyzzy2
|
||||||
|
|
||||||
|
for OPTS in "-g -b 4800 -s -42 -n -57" "-g -b 2400 -s -42 -n -51"
|
||||||
|
do
|
||||||
|
./v27ter_tests ${OPTS} >$STDOUT_DEST 2>$STDERR_DEST
|
||||||
|
RETVAL=$?
|
||||||
|
if [ $RETVAL != 0 ]
|
||||||
|
then
|
||||||
|
echo v27ter_tests ${OPTS} failed!
|
||||||
|
exit $RETVAL
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
echo v27ter_tests completed OK
|
16
libs/spandsp/tests/v29_tests.sh
Executable file
16
libs/spandsp/tests/v29_tests.sh
Executable file
@ -0,0 +1,16 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
STDOUT_DEST=xyzzy
|
||||||
|
STDERR_DEST=xyzzy2
|
||||||
|
|
||||||
|
for OPTS in "-g -b 9600 -s -42 -n -62" "-g -b 7200 -s -42 -n -59" "-g -b 4800 -s -42 -n -54"
|
||||||
|
do
|
||||||
|
./v29_tests ${OPTS} >$STDOUT_DEST 2>$STDERR_DEST
|
||||||
|
RETVAL=$?
|
||||||
|
if [ $RETVAL != 0 ]
|
||||||
|
then
|
||||||
|
echo v29_tests ${OPTS} failed!
|
||||||
|
exit $RETVAL
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
echo v29_tests completed OK
|
Loading…
x
Reference in New Issue
Block a user