15 lines
419 B
Bash
Executable File
15 lines
419 B
Bash
Executable File
#!/bin/bash
|
|
set -eu
|
|
|
|
export RUST_BACKTRACE=1
|
|
export RUSTFLAGS="-D dead_code -D unused-variables -D unused"
|
|
|
|
for tls in "" tls ; do
|
|
for feature in "" json charset cookies socks-proxy native-certs ; do
|
|
if ! cargo test --no-default-features --features "${tls} ${feature}" ; then
|
|
echo Command failed: cargo test \"${what}\" --no-default-features --features \"${tls} ${feature}\"
|
|
exit 1
|
|
fi
|
|
done
|
|
done
|