From c98652e68f8b98d2223e48bf54855530166afb53 Mon Sep 17 00:00:00 2001 From: "Kyle J. McKay" Date: Wed, 14 Nov 2012 03:56:16 -0800 Subject: [PATCH] Show compiler version in test output --- checktests | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/checktests b/checktests index 96fc8b5a9..1c9059203 100755 --- a/checktests +++ b/checktests @@ -30,6 +30,12 @@ if [ ! -r "$LIB" ]; then echo "No $LIB file found, try running $(dirname "$0")/buildlib first" exit 1 fi +echo "$CC" --version +"$CC" --version +if [ -n "$dopp" -a z"$CXX" != z"$CC" ]; then + echo "$CXX" --version + "$CXX" --version +fi failcount=0 testsfailed= for test in BlocksRuntime/tests/*.[cC]; do -- 2.11.4.GIT