summaryrefslogtreecommitdiff
path: root/tests/test.sh
diff options
context:
space:
mode:
authorLeo Tenenbaum <pommicket@gmail.com>2020-04-21 17:26:47 -0400
committerLeo Tenenbaum <pommicket@gmail.com>2020-04-21 17:26:47 -0400
commit17709633dca5cb3d2b0b34a353bdf68c112c10e4 (patch)
tree89ed142165db5911bc3ab667f4cc11bb593fc3b5 /tests/test.sh
parent606b4078dc2871262455272a56a4ab4d5e90b523 (diff)
fixed for loop problem (turns out it had to do with implicit type conversions)
Diffstat (limited to 'tests/test.sh')
-rwxr-xr-xtests/test.sh1
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