diff options
Diffstat (limited to 'run-tests.sh')
| -rwxr-xr-x | run-tests.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/run-tests.sh b/run-tests.sh index 888968ad..7ed965cf 100755 --- a/run-tests.sh +++ b/run-tests.sh @@ -29,7 +29,7 @@ if [ ! -e "../libdcp-test" ]; then exit 1 fi -for d in `find ../libdcp-test -mindepth 1 -maxdepth 1 -type d`; do +for d in `find ../libdcp-test -mindepth 1 -maxdepth 1 -type d | sort`; do if [ `basename $d` != ".git" ]; then LD_LIBRARY_PATH=build/src:build/asdcplib/src build/tools/dcpinfo -s $d >> build/test/info.log if [ "$?" != "0" ]; then @@ -49,7 +49,7 @@ rm -f build/test/info2.log rm -rf build/test/libdcp-test cp -r ../libdcp-test build/test -for d in `find build/test/libdcp-test -mindepth 1 -maxdepth 1 -type d`; do +for d in `find build/test/libdcp-test -mindepth 1 -maxdepth 1 -type d | sort`; do if [ `basename $d` != ".git" ]; then LD_LIBRARY_PATH=build/src:build/asdcplib/src build/test/rewrite_subs $d LD_LIBRARY_PATH=build/src:build/asdcplib/src build/tools/dcpinfo -s $d >> build/test/info2.log |
