diff options
| author | Steven Fackler <[email protected]> | 2014-10-05 13:49:47 -0700 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2014-10-05 13:49:47 -0700 |
| commit | d6578469a85bcc06a5761c1e25a73036427affef (patch) | |
| tree | cffb884f58fb6ea648ac2763129fa0fdb1ef653f | |
| parent | Ignore error string text (diff) | |
| download | rust-openssl-d6578469a85bcc06a5761c1e25a73036427affef.tar.xz rust-openssl-d6578469a85bcc06a5761c1e25a73036427affef.zip | |
Ignore stderr from openssl s_server
| -rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 432f9506..b2b9dc69 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,7 +6,7 @@ os: - osx - linux before_script: - - openssl s_server -accept 15418 -www -cert test/cert.pem -key test/key.pem >/dev/null & + - openssl s_server -accept 15418 -www -cert test/cert.pem -key test/key.pem >/dev/null 2>&1 & script: - cargo build - cargo test |