diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2015-08-29 16:02:19 -0500 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2015-08-29 16:03:09 -0500 |
commit | 039540a3f5fbb458987c999e507010c478dd635d (patch) | |
tree | de9f8a15a766e17c9a91c0a093f89562b7c2e8fd | |
parent | 2f1d5a47c155edf376fdef3b5b94667cea259653 (diff) | |
download | cryptography-039540a3f5fbb458987c999e507010c478dd635d.tar.gz cryptography-039540a3f5fbb458987c999e507010c478dd635d.tar.bz2 cryptography-039540a3f5fbb458987c999e507010c478dd635d.zip |
add some otool output to the OS X builds
-rwxr-xr-x | .travis/run.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.travis/run.sh b/.travis/run.sh index b519c9fc..a1788f8f 100755 --- a/.travis/run.sh +++ b/.travis/run.sh @@ -31,3 +31,7 @@ else fi source ~/.venv/bin/activate tox -- $TOX_FLAGS +# Output information about linking of the OpenSSL library on OS X +if [[ "$(uname -s)" == "Darwin" ]]; then + otool -L `find .tox -name _openssl.so` +fi |