From: Carl Hetherington Date: Tue, 29 Sep 2020 20:25:29 +0000 (+0200) Subject: macOS extensions to run/tests. X-Git-Tag: v2.15.104~53 X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=8ca9eff1fb09a873f651d8389c752ae3cef9df88 macOS extensions to run/tests. --- diff --git a/run/tests b/run/tests index afec5d2e7..3a7861ae0 100755 --- a/run/tests +++ b/run/tests @@ -3,14 +3,27 @@ # e.g. --run_tests=foo if [ "$(uname)" == "Linux" ]; then - export LD_LIBRARY_PATH=build/src/lib:/home/c.hetherington/lib:$LD_LIBRARY_PATH - rm -f build/test/openssl + export LD_LIBRARY_PATH=build/src/lib:$LD_LIBRARY_PATH + rm -f build/test/dcpomatic2_openssl # This must be our patched openssl or tests will fail if [ ! -f build/test/dcpomatic2_openssl ]; then ln -s ../../../openssl/apps/openssl build/test/dcpomatic2_openssl fi fi +if [ "$(uname)" == "Darwin" ]; then + resources=build/Resources + rm -rf $resources + mkdir -p $resources + cp fonts/*.ttf $resources + cp -r ../libdcp/tags $resources + cp -r ../libdcp/xsd $resources + rm -f build/test/openssl + ln -s ../../../openssl/apps/openssl build/test/openssl + # SIP stops this being passed in from the caller's environment + export DYLD_LIBRARY_PATH=/Users/carl/osx-environment/64/lib +fi + if [ "$1" == "--debug" ]; then shift; gdb --args build/test/unit-tests --catch_system_errors=no --log_level=test_suite $*