diff options
| -rwxr-xr-x | run/tests | 17 |
1 files changed, 15 insertions, 2 deletions
@@ -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 $* |
