1#!/bin/sh
2. ./testfuncs.sh
3
4echo "DP TEST"
5tmpout="test-dp.out"
6
7echo "TEST THE WORD ALIGNMENT ROUTINE. "
8
9rm -f $tmpout
10
11run_program sphinx3_dp \
12-hypfile $hub4am/test.dp.hyp \
13-reffile $hub4am/test.dp.ref \
14> $tmpout
15
16compare_table "DP SIMPLE test" $tmpout $hub4am/test.dp.simple.log
17
18
19#run_program sphinx3_dp \
20#-d 1 \
21#-hypfile $hub4am/test.dp.hyp \
22#-reffile $hub4am/test.dp.ref \
23#> $tmpout
24
25#compare_table $tmpout $hub4am/test.dp.detail.log
26#then echo "DP DETAIL test"
27#echo "DP DETAIL test FAILED"; fi
28
29