Merge pull request #1162 from matthiasbeyer/travis-all

Travis all
This commit is contained in:
Matthias Beyer 2017-11-18 14:23:18 +01:00 committed by GitHub
commit 0e04e8f258
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -22,8 +22,8 @@ cache:
cargo: true
script:
- |
cargo build --all --verbose -j 1 && cargo test --all --verbose -j 1
- cargo build --all --all-features --verbose -j 1
- cargo test --all --all-features --verbose -j 1
notifications:
email:

View file

@ -30,7 +30,7 @@ use error::StoreError as SE;
macro_rules! if_cfg_panic {
() => { panic!() };
($msg:expr) => { panic!($msg) };
($fmt:expr, $($arg:tt)+) => { panic!($fmt, $($($arg),*)) };
($fmt:expr, $($arg:tt)+) => { panic!($fmt, $($arg),+) };
}
#[cfg(not(feature = "early-panic"))]