2021-11-30 14:12:04 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# run tests matching what CI does for non-linux feature sets
|
|
|
|
|
|
|
|
set -x
|
|
|
|
|
2021-12-14 21:17:50 +00:00
|
|
|
EXIT=0
|
2021-12-02 17:04:40 +00:00
|
|
|
|
2021-12-14 21:17:50 +00:00
|
|
|
save_exit_code() {
|
|
|
|
eval $@
|
|
|
|
local CMD_EXIT=$?
|
|
|
|
[ "$CMD_EXIT" = "0" ] || EXIT=$CMD_EXIT
|
|
|
|
}
|
|
|
|
|
2022-01-03 13:17:57 +00:00
|
|
|
save_exit_code cargo test --lib --tests -p=actix-router --all-features -- --nocapture
|
2022-02-01 13:35:32 +00:00
|
|
|
save_exit_code cargo test --lib --tests -p=actix-http --all-features -- --nocapture
|
|
|
|
save_exit_code cargo test --lib --tests -p=actix-web --features=rustls,openssl -- --nocapture
|
|
|
|
save_exit_code cargo test --lib --tests -p=actix-web-codegen --all-features -- --nocapture
|
|
|
|
save_exit_code cargo test --lib --tests -p=awc --all-features -- --nocapture
|
|
|
|
save_exit_code cargo test --lib --tests -p=actix-http-test --all-features -- --nocapture
|
|
|
|
save_exit_code cargo test --lib --tests -p=actix-test --all-features -- --nocapture
|
|
|
|
save_exit_code cargo test --lib --tests -p=actix-files -- --nocapture
|
|
|
|
save_exit_code cargo test --lib --tests -p=actix-multipart --all-features -- --nocapture
|
|
|
|
save_exit_code cargo test --lib --tests -p=actix-web-actors --all-features -- --nocapture
|
|
|
|
|
|
|
|
save_exit_code cargo test --workspace --doc
|
2022-01-31 22:20:53 +00:00
|
|
|
|
|
|
|
if [ "$EXIT" = "0" ]; then
|
|
|
|
PASSED="All tests passed!"
|
|
|
|
|
|
|
|
if [ "$(command -v figlet)" ]; then
|
|
|
|
figlet "$PASSED"
|
|
|
|
else
|
|
|
|
echo "$PASSED"
|
|
|
|
fi
|
|
|
|
fi
|
2021-12-14 21:17:50 +00:00
|
|
|
|
|
|
|
exit $EXIT
|