fixed bug and created script for running tests
This commit is contained in:
15
tests/run_tests.sh
Executable file
15
tests/run_tests.sh
Executable file
@ -0,0 +1,15 @@
|
||||
#!/bin/bash
|
||||
|
||||
mapfile -t files < <(find ../tests/. -name "*.ics")
|
||||
|
||||
i=1
|
||||
for file in ${files[@]}; do
|
||||
echo "TEST ${i}: ${file}"
|
||||
echo "===================================================="
|
||||
../src/icscli -f "${file}"
|
||||
echo "===================================================="
|
||||
echo
|
||||
((i++))
|
||||
done
|
||||
|
||||
exit 0
|
Reference in New Issue
Block a user