From 8717f3604bef86b07c453fba3841f2a6f5e073dc Mon Sep 17 00:00:00 2001 From: Noah Boorstin Date: Thu, 11 Mar 2021 06:59:50 +0000 Subject: [PATCH] try adding delays to test regression script --- wally-pipelined/regression/regression-wally.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/wally-pipelined/regression/regression-wally.sh b/wally-pipelined/regression/regression-wally.sh index 12d394180..a5945ef7b 100755 --- a/wally-pipelined/regression/regression-wally.sh +++ b/wally-pipelined/regression/regression-wally.sh @@ -5,8 +5,10 @@ check_test () { echo "$found" } echo "starting Imperas rv64ic" +sleep 1 coproc rv64 {(check_test "sim-wally-batch" "All tests ran without failures.")} echo "starting busybear" +sleep 1 coproc busybear {(check_test "sim-busybear-batch" "loaded 100000 instructions")} IFS= read -r -d '' -u "${rv64[0]}" rv64_out [[ $rv64_out -eq 1 ]] && echo "rv64ic passed" || echo "rv64ic failed"