git-subtree-dir: external/mINI git-subtree-split: 52b66e987cb56171dc91d96115cdf094b6e4d7a0
14 lines
225 B
Bash
Executable File
14 lines
225 B
Bash
Executable File
#!/bin/bash
|
|
cd build/
|
|
|
|
rm -f *.ini
|
|
|
|
for test_file in *.test; do
|
|
./$test_file -p > /dev/null
|
|
if [[ $? -ne 0 ]]; then
|
|
echo "Test $test_file failed."
|
|
exit 1
|
|
fi
|
|
echo "Test $test_file passed."
|
|
done
|