diff options
| author | rimio <vasi.vilvoiu@gmail.com> | 2018-03-29 02:21:02 +0300 |
|---|---|---|
| committer | rimio <vasi.vilvoiu@gmail.com> | 2018-03-29 02:21:02 +0300 |
| commit | aa421ace0b0d05e2a88d44e7dd8cea1b0fb1b392 (patch) | |
| tree | 3772a9736ee8685aaa10d65bd916dce8c4c1f2d5 /test/runtests.sh | |
| parent | 5c43023ce4c837ed70ac0c231e5b79f5fefb1157 (diff) | |
Add new tests
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 "" |
