git-svn-id: svn+ssh://svn.code.sf.net/p/cmusphinx/code/trunk/sphinxbase@7069 94700074-3cef-4d97-a70e-9c8c206c02f5
9 lines
230 B
Bash
Executable File
9 lines
230 B
Bash
Executable File
#!/bin/sh
|
|
. ../testfuncs.sh
|
|
|
|
set -e
|
|
testname=`basename $0 .test`
|
|
./cmdln_parse -a 36 -b hello -c yes -d 4.5 > $testname.out 2>/dev/null
|
|
compare_table defaults $testname.out $tests/unit/test_cmdln/$testname.res
|
|
rm -f $testname.out
|