From f9a4348f107ba0e8fa98d319cfa39ba410475844 Mon Sep 17 00:00:00 2001 From: Michael Boelen Date: Tue, 26 Jul 2016 16:01:38 +0200 Subject: [PATCH] Uppercase tests: detect them properly as atomic tests. --- include/functions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/functions b/include/functions index a5ab3dbc..7faee3db 100644 --- a/include/functions +++ b/include/functions @@ -2454,7 +2454,7 @@ RETVAL=1 # Check if this test is on the list to skip for I in ${SKIP_TESTS}; do - STRING=`echo $1 | tr '[:upper:]' '[:lower:]'` + STRING=`echo $1 | tr '[:lower:]' '[:upper:]'` if [ "${I}" = "${STRING}" ]; then RETVAL=0; LogText "Atomic test ($1) skipped by configuration (skip-test)"; fi done else