mirror of
https://github.com/ZDoom/fluidsynth.git
synced 2025-01-19 16:00:51 +00:00
30 lines
876 B
Bash
30 lines
876 B
Bash
#!/bin/sh
|
|
|
|
rm -f test-names.txt
|
|
|
|
for f in `grep -lR "int main(void)" ../test/` ; do
|
|
export TESTMAINNAME=`echo $f | sed -e "s/\.\.\/test\/test_\(.*\).c$/\1/"`
|
|
echo $TESTMAINNAME >> test-names.txt
|
|
export OUTPUTFILE=app/src/main/cpp/tests/test_${TESTMAINNAME}.c
|
|
sed -e "s/int main(void)/int "$TESTMAINNAME"_main(void)/" $f > $OUTPUTFILE ;
|
|
done
|
|
|
|
RUN_ALL_TESTS=app/src/main/cpp/run_all_tests.c
|
|
|
|
rm -f $RUN_ALL_TESTS
|
|
|
|
while IFS= read -r line; do
|
|
echo "int "$line"_main();" >> $RUN_ALL_TESTS ;
|
|
done < test-names.txt
|
|
|
|
echo "extern \"C\" {" >> $RUN_ALL_TESTS
|
|
echo "int run_all_fluidsynth_tests() {" >> $RUN_ALL_TESTS
|
|
echo " int ret = 0; " >> $RUN_ALL_TESTS
|
|
|
|
while IFS= read -r line; do
|
|
echo " ret += "$line"_main();" >> $RUN_ALL_TESTS ;
|
|
done < test-names.txt
|
|
|
|
echo " return ret;" >> $RUN_ALL_TESTS
|
|
echo "}" >> $RUN_ALL_TESTS
|
|
echo "}" >> $RUN_ALL_TESTS
|