From 25bf809a867720399cf12f8c0efec86eaeec26c5 Mon Sep 17 00:00:00 2001 From: Oxore Date: Sat, 20 May 2023 18:33:40 +0300 Subject: Impl marks referencing for PEA and NBCD --- test_random.bash | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'test_random.bash') diff --git a/test_random.bash b/test_random.bash index 094dad1..daf5a5b 100644 --- a/test_random.bash +++ b/test_random.bash @@ -46,10 +46,18 @@ run_test_random() { fi } +# 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. +# +# If there is an obvious bug, then it will most likely be detected +# here and it is easier to dissect tiny test blob than huge test trying to debug +# single test case. 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 -- cgit v1.2.3