Bump version.
[libdcp.git] / run-tests.sh
1 #!/bin/sh
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 LD_LIBRARY_PATH=build/src:build/asdcplib/src build/test/tests
11 diff -ur test/ref/DCP build/test/foo
12 if [ "$?" != "0" ]; then
13   echo "FAIL: files differ"
14   exit 1
15 fi
16 echo "PASS"