summaryrefslogtreecommitdiffstats
path: root/third_party/rust/cookie/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/rust/cookie/scripts')
-rwxr-xr-xthird_party/rust/cookie/scripts/test.sh19
1 files changed, 19 insertions, 0 deletions
diff --git a/third_party/rust/cookie/scripts/test.sh b/third_party/rust/cookie/scripts/test.sh
new file mode 100755
index 0000000000..894d468eb7
--- /dev/null
+++ b/third_party/rust/cookie/scripts/test.sh
@@ -0,0 +1,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