From b98a7675f8a3bfb837a92cc85d5ee916acccfb41 Mon Sep 17 00:00:00 2001 From: "Kyle J. McKay" Date: Mon, 19 Sep 2011 18:19:27 -0700 Subject: [PATCH] Remove __APPLE_CC__ fiddling and more visible FAILURE lines --- checktests | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/checktests b/checktests index d17640963..d8e7cfeea 100755 --- a/checktests +++ b/checktests @@ -1,5 +1,5 @@ #!/bin/sh -CFLAGS='-Wno-unused -include /usr/include/stdio.h -include /usr/include/sys/wait.h -U__APPLE_CC__ -D__APPLE_CC__=5627 -IBlocksRuntime' +CFLAGS='-Wno-unused -include /usr/include/stdio.h -include /usr/include/sys/wait.h -IBlocksRuntime' LIB=libBlocksRuntime.a TESTDIR=testbin rm -rf $TESTDIR @@ -74,13 +74,17 @@ for test in BlocksRuntime/tests/*.[cC]; do fi if [ $result = 0 -a -n "$xfail" ]; then echo '' + echo "***" echo "*** ^FAILURE: expect FAIL test PASSED! ***" + echo "***" echo '' testsfailed=1 fi if [ $result != 0 -a -z "$xfail" ]; then echo '' + echo "***" echo "*** ^FAILURE: expect PASS test FAILED! ***" + echo "***" echo '' testsfailed=1 fi -- 2.11.4.GIT