From ab3f4971f08bc972b6916539f3cb85214cb28598 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Mon, 31 Dec 2018 21:28:39 -0500 Subject: [PATCH] Move compiletest out of the unstable feature flag --- .travis.yml | 2 +- test_suite/Cargo.toml | 3 ++- test_suite/tests/compiletest.rs | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index d5ed9a22..929e171b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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 diff --git a/test_suite/Cargo.toml b/test_suite/Cargo.toml index 7d93fe45..cb53fa5f 100644 --- a/test_suite/Cargo.toml +++ b/test_suite/Cargo.toml @@ -5,7 +5,8 @@ authors = ["Erick Tryzelaar ", "David Tolnay