blob: b088905b0780ab28540bca48669d4e58f6eb9975 (
plain)
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
|
clean_up() {
rm -f batch.stdout shell.stdout shell.returns batch.returns
}
clean_up
echo '* Running batch mode'
./dcop_test --batch >batch.stdout
echo -n '* Starting test app '
./dcop_test >shell.stdout &
while ! dcop | grep -q TestApp; do echo -n '.'; sleep 2; done
echo ' started'
echo '* Running driver mode'
./driver `dcop 'TestApp-*'` >driver.stdout
echo '* Running shell mode'
source ./shell.generated >shell.returns
echo -n '* Comparing ... '
compare()
{
if ! diff -q --strip-trailing-cr $1 $2; then
echo "FAILED:"
diff -u $1 $2
exit 1;
fi
}
compare batch.stdout shell.stdout
compare batch.stdout driver.stdout
compare batch.returns shell.returns
compare batch.returns driver.returns
clean_up
echo "Passed"
exit 0;
|