diff options
author | Leo Tenenbaum <pommicket@gmail.com> | 2020-04-21 17:26:47 -0400 |
---|---|---|
committer | Leo Tenenbaum <pommicket@gmail.com> | 2020-04-21 17:26:47 -0400 |
commit | 17709633dca5cb3d2b0b34a353bdf68c112c10e4 (patch) | |
tree | 89ed142165db5911bc3ab667f4cc11bb593fc3b5 /tests | |
parent | 606b4078dc2871262455272a56a4ab4d5e90b523 (diff) |
fixed for loop problem (turns out it had to do with implicit type conversions)
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/test.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/test.sh b/tests/test.sh index 3d728d3..8df4c46 100755 --- a/tests/test.sh +++ b/tests/test.sh @@ -36,6 +36,7 @@ compile_c() { failed=false do_tests() { + echo "----$1----" valgrind -q --exit-on-first-error=yes --error-exitcode=1 $TOC "$1.toc" -o out.c || exit 1 for CC in "gcc -O0 -g" "tcc" "clang -O3 -s"; do if [ "$1" = "sizeof" ]; then |