Make ttest compile under clang

This commit is contained in:
2017-12-05 11:55:18 +01:00
parent ad74123882
commit 826885df8a
2 changed files with 2 additions and 2 deletions

2
ttest
View File

@@ -13,7 +13,7 @@ main()
local tests=`sed -n -e 's/^\s*TEST(\([^,]*,\).*$/ttt_\1/p' $suite`
echo "tt_test tt_tests[] = {${tests}0};" >> $suite.c
test_exec=`mktemp`
test_exec=`mktemp /tmp/tmp.XXXXXX`
compiler_output=`cc $suite.c -o $test_exec -ggdb -I $dir/include -DTTEST 2>&1`
compiler_status=$?