tweak the order of the tests

This commit is contained in:
Jorge Aparicio
2018-07-27 00:38:56 -05:00
parent 68329712b3
commit 9b26c6a408
+7 -7
View File
@@ -6,13 +6,6 @@ main() {
return
fi
# test that the functions don't contain invocations of `panic!`
case $TARGET in
armv7-unknown-linux-gnueabihf)
cross build --release --target $TARGET --example no-panic
;;
esac
# quick check
cargo check
@@ -24,6 +17,13 @@ main() {
cargo run -p musl-generator --target x86_64-unknown-linux-musl
cargo run -p newlib-generator
# test that the functions don't contain invocations of `panic!`
case $TARGET in
armv7-unknown-linux-gnueabihf)
cross build --release --target $TARGET --example no-panic
;;
esac
# run unit tests
cross test --lib --features checked --target $TARGET --release