From 76110735842a88d78d339e41b526d6ee18c2692d Mon Sep 17 00:00:00 2001 From: "zero.qn" Date: Thu, 5 May 2022 20:39:30 +0800 Subject: [PATCH] chore: loop_proptest script --- c-uint256-tests/loop_proptest | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 c-uint256-tests/loop_proptest diff --git a/c-uint256-tests/loop_proptest b/c-uint256-tests/loop_proptest new file mode 100755 index 00000000..7939c484 --- /dev/null +++ b/c-uint256-tests/loop_proptest @@ -0,0 +1,11 @@ +#!/bin/bash + +export PROPTEST_CASES=100000 + +counter=1 +while : +do + echo "$counter round" + cargo test + ((counter++)) +done