aboutsummaryrefslogtreecommitdiffstats
path: root/.travis
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2015-08-29 16:02:19 -0500
committerPaul Kehrer <paul.l.kehrer@gmail.com>2015-08-29 16:03:09 -0500
commit039540a3f5fbb458987c999e507010c478dd635d (patch)
treede9f8a15a766e17c9a91c0a093f89562b7c2e8fd /.travis
parent2f1d5a47c155edf376fdef3b5b94667cea259653 (diff)
downloadcryptography-039540a3f5fbb458987c999e507010c478dd635d.tar.gz
cryptography-039540a3f5fbb458987c999e507010c478dd635d.tar.bz2
cryptography-039540a3f5fbb458987c999e507010c478dd635d.zip
add some otool output to the OS X builds
Diffstat (limited to '.travis')
-rwxr-xr-x.travis/run.sh4
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