From 560acfadf67e0c691c285c3ccb5add6dfe241deb Mon Sep 17 00:00:00 2001 From: mboelen Date: Wed, 20 Apr 2016 12:08:34 +0200 Subject: [PATCH] Log what particular atomic test has been skipped and why --- include/functions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/functions b/include/functions index 731aef5f..ce8b75fb 100644 --- a/include/functions +++ b/include/functions @@ -2103,7 +2103,7 @@ RETVAL=1 # Check if this test is on the list to skip for I in ${SKIP_TESTS}; do - if [ "${I}" = "$1" ]; then RETVAL=0; LogText "Atomic test skipped by configuration (skip-test)"; fi + if [ "${I}" = "$1" ]; then RETVAL=0; LogText "Atomic test ($1) skipped by configuration (skip-test)"; fi done fi return $RETVAL