Skip to content
This repository has been archived by the owner on Nov 9, 2022. It is now read-only.

Commit

Permalink
chore: loop_proptest script
Browse files Browse the repository at this point in the history
  • Loading branch information
zeroqn committed May 5, 2022
1 parent 545fa14 commit 7611073
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions c-uint256-tests/loop_proptest
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/bin/bash

export PROPTEST_CASES=100000

counter=1
while :
do
echo "$counter round"
cargo test
((counter++))
done

0 comments on commit 7611073

Please sign in to comment.