Partial subtitle work.
[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 echo "PASS"