summaryrefslogtreecommitdiffstats
path: root/third_party/rust/cookie/scripts/test.sh
blob: 894d468eb7078e1932bb672f467df662e64a8482 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/bash

set -e

cargo build --verbose

cargo test --verbose --features percent-encode
cargo test --verbose --features private
cargo test --verbose --features signed
cargo test --verbose --features secure
cargo test --verbose --features 'private,key-expansion'
cargo test --verbose --features 'signed,key-expansion'
cargo test --verbose --features 'secure,percent-encode'

cargo test --verbose
cargo test --verbose --no-default-features
cargo test --verbose --all-features

rustdoc --test README.md -L target