From 233c2a5b32b139fa1b1031276da5c56182e9acf3 Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Tue, 6 Feb 2024 04:22:27 +0000 Subject: [PATCH] Add test script --- test.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 test.sh diff --git a/test.sh b/test.sh new file mode 100755 index 0000000..36609fd --- /dev/null +++ b/test.sh @@ -0,0 +1,10 @@ +#!/bin/sh +set -eox +cargo test +cargo test --features std +cargo test --features tokio +cargo test --features build_server +cargo build --lib +cargo build --lib --features std +cargo build --lib --features tokio +cargo build --bin http_proof_gen --features build_server -- 2.30.2