summaryrefslogtreecommitdiff
path: root/test/runtests.sh
diff options
context:
space:
mode:
authorrimio <vasi.vilvoiu@gmail.com>2018-03-29 02:21:02 +0300
committerrimio <vasi.vilvoiu@gmail.com>2018-03-29 02:21:02 +0300
commitaa421ace0b0d05e2a88d44e7dd8cea1b0fb1b392 (patch)
tree3772a9736ee8685aaa10d65bd916dce8c4c1f2d5 /test/runtests.sh
parent5c43023ce4c837ed70ac0c231e5b79f5fefb1157 (diff)
Add new tests
Diffstat (limited to 'test/runtests.sh')
-rwxr-xr-xtest/runtests.sh15
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 ""