X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=run-tests.sh;h=f9ef16f988a15d02e983512ea6e6bf2d97c743b5;hb=da2f0d96f3c5ffa73bfecd9df613b23200e862f7;hp=a44ccea09ea9dbc1b321719c3e02ba4f45986aa5;hpb=eaac013b4e68dea48fb2c3070b7c7ca59dfd1b96;p=libdcp.git diff --git a/run-tests.sh b/run-tests.sh index a44ccea0..f9ef16f9 100755 --- a/run-tests.sh +++ b/run-tests.sh @@ -1,6 +1,16 @@ #!/bin/sh -LD_LIBRARY_PATH=build/src:build/asdcplib/src -build/test/tests -#diff -ur build/test/foo test/ref/DCP - \ No newline at end of file +# +# 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" \ No newline at end of file