aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven Fackler <[email protected]>2015-02-09 19:57:39 -0800
committerSteven Fackler <[email protected]>2015-02-09 20:02:14 -0800
commitffeeea52b70544b7391440872ca899b2a816fd6e (patch)
tree0333e55e3beb073136b01954eb7890efdc23ff52
parentDon't test with features enabled on OSX (diff)
downloadrust-openssl-ffeeea52b70544b7391440872ca899b2a816fd6e.tar.xz
rust-openssl-ffeeea52b70544b7391440872ca899b2a816fd6e.zip
Derp
-rw-r--r--.travis.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index f72d7930..849bc1b7 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -10,7 +10,7 @@ before_script:
- openssl s_server -accept 15418 -www -cert openssl/test/cert.pem -key openssl/test/key.pem >/dev/null 2>&1 &
script:
- (cd openssl && cargo test)
-- (test $TRAVIS_OS_NAME != "osx" && cd openssl && cargo test --features $FEATURES)
+- (test $TRAVIS_OS_NAME == "osx" || (cd openssl && cargo test --features $FEATURES))
- ./.travis/build_docs.sh
after_success:
- test $TRAVIS_PULL_REQUEST == "false" && test $TRAVIS_BRANCH == "master" && ./.travis/update_docs.sh