diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_random.bash | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/test_random.bash b/tests/test_random.bash index 60e66a0..3d910a2 100644 --- a/tests/test_random.bash +++ b/tests/test_random.bash @@ -46,6 +46,11 @@ run_test_random() { fi } +# Huge tests are for the broad coverage. They catch a lot! +for i in `seq 1 10`; do + run_test_random huge$i 1024 +done + # Tiny tests are mostly for ensuring that bounds checking is working properly, # because it is more likely to encounter something that looks like a truncated # instruction. @@ -56,8 +61,3 @@ run_test_random() { for i in `seq 1 1000`; do run_test_random tiny$i 1 done - -# Huge tests are for the broad coverage. They catch a lot! -for i in `seq 1 10`; do - run_test_random huge$i 1024 -done |