diff options
author | Oxore <oxore@protonmail.com> | 2025-01-08 00:46:44 +0300 |
---|---|---|
committer | Oxore <oxore@protonmail.com> | 2025-02-01 18:26:18 +0300 |
commit | 6769fca1dd90f4e34e1fd6b2256c3795bbcaf658 (patch) | |
tree | 80899430ea776d80b98be4e198591a61f8384d16 /tests | |
parent | 8340b1f42288e0143bca8a254600fb34025ec803 (diff) |
WIP
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 |