From d7d23934bc1da583fa7c95d928aeb2ac3f170b72 Mon Sep 17 00:00:00 2001 From: =?utf8?q?G=C3=BCnter=20Milde?= Date: Fri, 16 Sep 2016 21:01:55 +0200 Subject: [PATCH] ctests: rename pattern file "suspiciousTests" to "invertedTests". part 2 --- development/autotests/ExportTests.cmake | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/development/autotests/ExportTests.cmake b/development/autotests/ExportTests.cmake index 7dd61683de..1ac487947e 100644 --- a/development/autotests/ExportTests.cmake +++ b/development/autotests/ExportTests.cmake @@ -123,18 +123,18 @@ function(join rvalues glue routput) set(${routput} ${out} PARENT_SCOPE) endfunction() -macro(maketestname testname inverted listsuspicious listignored listunreliable listlabels) +macro(maketestname testname inverted listinverted listignored listunreliable listlabels) # initialize output variable set(${inverted} 0) string(REGEX MATCH "\\/[a-z][a-z](_[A-Z][A-Z])?\\/" _v ${${testname}}) if(_v) string(REGEX REPLACE "\\/" "" _v ${_v}) - set(listsuspiciousx ${listsuspicious}_${_v}) + set(listinvertedx ${listinverted}_${_v}) set(listignoredx ${listignored}_${_v}) set(listunreliablex ${listunreliable}_${_v}) set(listsuspendedx suspendedTests_${_v}) else() - set(listsuspiciousx ${listsuspicious}) + set(listinvertedx ${listinverted}) set(listignoredx ${listignored}) set(listunreliablex ${listunreliable}) set(listsuspendedx suspendedTests) @@ -149,10 +149,10 @@ macro(maketestname testname inverted listsuspicious listignored listunreliable l list(REMOVE_ITEM sublabel "export" "inverted" "templates" "mathmacros" "manuals" "autotests") else() string(REGEX MATCH "(^check_load|_(systemF|texF|pdf3|pdf2|pdf|dvi|lyx[0-9][0-9]|xhtml)$)" _v ${${testname}}) - # check if test _may_ be in listsuspicious + # check if test _may_ be in listinverted set(sublabel2 "") if (_v) - findexpr(mfound ${testname} ${listsuspiciousx} sublabel2) + findexpr(mfound ${testname} ${listinvertedx} sublabel2) else() set(mfound OFF) endif() -- 2.39.2