summaryrefslogtreecommitdiff
path: root/run-tests.sh
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-05-14 16:22:54 +0100
committerCarl Hetherington <cth@carlh.net>2013-05-14 16:22:54 +0100
commitb172ecbede672bdef982e5b45376ac3517440263 (patch)
treeca3330c6dfed482828b83be12588f06f4025f208 /run-tests.sh
parent8526058d24faec5f83ffd66758fef8d8c8159f73 (diff)
Fix corpus tests wrt alphabetical sorting; fix some bugs with subtitles that were shown up.
Diffstat (limited to 'run-tests.sh')
-rwxr-xr-xrun-tests.sh4
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