Added script to test all the example json files

This commit is contained in:
Abdelrahman Said 2023-06-18 00:03:07 +01:00
parent ed9b5fb638
commit 727d41c5ff

5
run_tests Normal file
View File

@ -0,0 +1,5 @@
#!/bin/bash
for JSON in $(find test_files -iregex .*json); do
./main $JSON
done