forked from cmusphinx/pocketsphinx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
testfuncs.sh.in
63 lines (54 loc) · 1.22 KB
/
testfuncs.sh.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# Utility functions and parameters for regression tests
# Predefined directories you may need
# Stupid broken CMU Facilities autoconf doesn't do @abs_top_srcdir@
builddir=../"@top_builddir@"
sourcedir=../"@top_srcdir@"
tests=$sourcedir/test
data=$sourcedir/test/data
model=$sourcedir/model
programs="$builddir/src/programs"
# Automatically report failures on exit
failures=""
trap "report_failures" 0
run_program() {
program="$1"
shift
$builddir/libtool --mode=execute "$programs/$program" $@
}
debug_program() {
program="$1"
shift
$builddir/libtool --mode=execute gdb --args "$programs/$program" $@
}
memcheck_program() {
program="$1"
shift
$builddir/libtool --mode=execute valgrind --leak-check=full "$programs/$program" $@
}
pass() {
title="$1"
echo "$title PASSED"
}
fail() {
title="$1"
echo "$title FAILED"
failures="$failures,$title"
}
compare_table() {
title="$1"
shift
if perl "$tests/compare_table.pl" $@ | grep SUCCESS >/dev/null 2>&1; then
pass "$title"
else
fail "$title"
fi
}
report_failures() {
if test x"$failures" = x; then
echo "All sub-tests passed"
exit 0
else
echo "Sub-tests failed:$failures" | sed -e 's/,/ /g'
exit 1
fi
}