From 727d41c5ff4a4fa46089dcdfb520b701f0e8bd3c Mon Sep 17 00:00:00 2001 From: Abdelrahman Said Date: Sun, 18 Jun 2023 00:03:07 +0100 Subject: [PATCH] Added script to test all the example json files --- run_tests | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 run_tests diff --git a/run_tests b/run_tests new file mode 100644 index 0000000..c151632 --- /dev/null +++ b/run_tests @@ -0,0 +1,5 @@ +#!/bin/bash + +for JSON in $(find test_files -iregex .*json); do + ./main $JSON +done