summaryrefslogtreecommitdiff
path: root/run/tests
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2024-01-12 15:29:12 +0100
committerCarl Hetherington <cth@carlh.net>2024-01-15 12:44:53 +0100
commitde1b4a967e6854782e88e83d48af74289977c8c3 (patch)
tree97b75a9d24e8f047f17f05a919a80c806b6544f0 /run/tests
parenta4a7d9ef34f2f083b0ba9e32e933ea5c64d2352d (diff)
Inspect most DCPs made during tests with ClairMeta (#76).
Diffstat (limited to 'run/tests')
-rwxr-xr-xrun/tests8
1 files changed, 7 insertions, 1 deletions
diff --git a/run/tests b/run/tests
index 7f8126fa3..12d59346d 100755
--- a/run/tests
+++ b/run/tests
@@ -3,7 +3,7 @@
# e.g. --run_tests=foo
set -e
-PRIVATE_GIT="b6277c54428e0abe2003c27868fe8f02119ef869"
+PRIVATE_GIT="59b62615a48a1f3a70e9c028b92dfba75c1719ba"
if [ "$1" == "--check" ]; then
shift 1
@@ -23,6 +23,12 @@ if [ "$(uname)" == "Linux" ]; then
if [ -f /src/backports/dcp_inspect ]; then
export DCPOMATIC_DCP_INSPECT=/src/backports/dcp_inspect
fi
+ set +e
+ python3 -m clairmeta.cli --help > /dev/null 2>&1
+ if [ "$?" == "0" ]; then
+ export DCPOMATIC_CLAIRMETA=1
+ fi
+ set -e
fi
if [ "$(uname)" == "Darwin" ]; then