Move compiletest out of the unstable feature flag

This commit is contained in:
David Tolnay 2018-12-31 21:28:39 -05:00
parent 47e238aa13
commit ab3f4971f0
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82
3 changed files with 4 additions and 3 deletions

View File

@ -29,7 +29,7 @@ matrix:
- cd "${TRAVIS_BUILD_DIR}/test_suite/deps"
- cargo build
- cd "${TRAVIS_BUILD_DIR}/test_suite"
- cargo test --features unstable
- cargo test --features unstable,compiletest
- cd "${TRAVIS_BUILD_DIR}/test_suite/no_std"
- cargo build

View File

@ -5,7 +5,8 @@ authors = ["Erick Tryzelaar <erick.tryzelaar@gmail.com>", "David Tolnay <dtolnay
publish = false
[features]
unstable = ["serde/unstable", "compiletest_rs"]
unstable = ["serde/unstable"]
compiletest = ["compiletest_rs"]
[dev-dependencies]
fnv = "1.0"

View File

@ -1,4 +1,4 @@
#![cfg(feature = "unstable")]
#![cfg(feature = "compiletest")]
extern crate compiletest_rs as compiletest;