blob: f9ef16f988a15d02e983512ea6e6bf2d97c743b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/sh
#
# Runs our test suite, which builds a DCP.
# The output is compared against the one
# in test/ref/DCP, and an error is given
# if anything is different.
#
LD_LIBRARY_PATH=build/src:build/asdcplib/src build/test/tests
diff -ur test/ref/DCP build/test/foo
if [ "$?" != "0" ]; then
echo "FAIL: files differ"
exit 1
fi
echo "PASS"
|