RunTest.sh
1010 Bytes
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
#!/bin/sh
usage="$0 <rttm validation script location> [-v]"
if [ "$#" -lt '1' ]; then
echo Script missing
echo $usage
exit 1
fi
rttm=$1
if [ ! -x "$rttm" ]; then
echo Script not executable
echo $usage
exit 1
fi
if [ "$2" = '-v' ] ; then
verbose=true
else
verbose=false
fi
for file in test*.rttm ; do
if [ -f "$file.toskip" ] ; then
echo "(skipping) Testing $file..."
else
echo "Testing $file..."
base=`echo $file | perl -pe 's/.rttm//'`
log="$base.log.saved"
tmp="$base.log.tmp"
if [ ! -f "$log" ] ; then
$rttm -S -t -i $file > $log
fi
$rttm -S -t -i $file > $tmp
diff_status=`diff -I 'RTTMValidator' $log $tmp | wc -l`
if [ $diff_status -ne 0 ] ; then
echo " Output log differs from saved log"
if [ $verbose = true ] ; then
diff -I 'RTTMValidator' $log $tmp | sed 's/^/ /'
fi
# exit with error status
exit 1
else
rm $tmp
fi
fi
done
# exit with ok status
exit 0