Bump version
[libdcp.git] / run-tests.sh
1 #!/bin/bash
2
3 #
4 # Runs our test suite, which builds a DCP.
5 # The output is compared against the one
6 # in test/ref/DCP, and an error is given
7 # if anything is different.
8 #
9
10 if [ "$1" == "--debug" ]; then
11   shift
12   LD_LIBRARY_PATH=build/src:build/asdcplib/src gdb --args build/test/tests
13 else
14   LD_LIBRARY_PATH=build/src:build/asdcplib/src build/test/tests
15 fi
16 diff -ur test/ref/DCP build/test/foo
17 if [ "$?" != "0" ]; then
18   echo "FAIL: files differ"
19   exit 1
20 fi
21
22 rm -f build/test/info.log
23
24 if [ -e "../libdcp-test" ]; then
25   for d in `find ../libdcp-test -mindepth 1 -maxdepth 1 -type d`; do
26     if [ `basename $d` != ".git" ]; then
27       LD_LIBRARY_PATH=build/src:build/asdcplib/src build/tools/dcpinfo -s $d >> build/test/info.log
28       if [ "$?" != "0" ]; then
29         echo "FAIL: dcpinfo failed for $d"
30         exit 1
31       fi
32     fi
33   done
34 else
35   echo "Test corpus not found"
36   exit 1
37 fi
38
39 diff -q build/test/info.log ../libdcp-test/info.log
40 if [ "$?" != "0" ]; then
41   echo "FAIL: dcpinfo output incorrect"
42   exit 1
43 fi
44
45 echo "PASS"