diff options
Diffstat (limited to 'test/runtests.sh')
| -rwxr-xr-x | test/runtests.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/test/runtests.sh b/test/runtests.sh index b09b105..fe6b39d 100755 --- a/test/runtests.sh +++ b/test/runtests.sh @@ -68,6 +68,21 @@ echo "Passed / Failed: ${pass}/${fail}" total_pass=$(($total_pass + $pass)) total_fail=$(($total_fail + $fail)) +# Edge cases tests +pass=0 +fail=0 + +echo "" +echo "=============================== EDGE CASE ==============================" +for f in files/edge_cases/*.bin; do + run_test $f +done +echo "========================================================================" +echo "Passed / Failed: ${pass}/${fail}" + +total_pass=$(($total_pass + $pass)) +total_fail=$(($total_fail + $fail)) + # Final report echo "" |
