From 8f38911e16d14cbd654d91501a0bcb30141ffa14 Mon Sep 17 00:00:00 2001 From: NATHALIE GORE Date: Mon, 26 Sep 2022 10:54:21 +0200 Subject: [PATCH] Add new SHAPER label : SHAPR_SEQ --- src/CTestTestfileInstall.cmake | 1 + src/FeaturesPlugin/CTestTestfileInstall.cmake | 9 ++++++++- src/FeaturesPlugin/tests.set | 9 +++++++-- 3 files changed, 16 insertions(+), 3 deletions(-) diff --git a/src/CTestTestfileInstall.cmake b/src/CTestTestfileInstall.cmake index ca18e37d3..b9e1c1ebf 100644 --- a/src/CTestTestfileInstall.cmake +++ b/src/CTestTestfileInstall.cmake @@ -19,6 +19,7 @@ SET(COMPONENT_NAME SHAPER) set(SALOME_TEST_LABEL_ADV SHAPR_ADV) +set(SALOME_TEST_LABEL_SEQ SHAPR_SEQ) # Add all test subdirs SUBDIRS(ConnectorAPI diff --git a/src/FeaturesPlugin/CTestTestfileInstall.cmake b/src/FeaturesPlugin/CTestTestfileInstall.cmake index fd3d28560..a43c441a5 100644 --- a/src/FeaturesPlugin/CTestTestfileInstall.cmake +++ b/src/FeaturesPlugin/CTestTestfileInstall.cmake @@ -19,8 +19,15 @@ include(tests.set) -foreach(tfile ${TEST_NAMES}) +foreach(tfile ${TEST_NAMES_PARA}) set(TEST_NAME ${COMPONENT_NAME}_${tfile}) add_test(${TEST_NAME} python ${tfile}) set_tests_properties(${TEST_NAME} PROPERTIES LABELS "${SALOME_TEST_LABEL_ADV}") endforeach() + + +foreach(tfile ${TEST_NAMES_SEQ}) + set(TEST_NAME ${COMPONENT_NAME}_${tfile}) + add_test(${TEST_NAME} python ${tfile}) + set_tests_properties(${TEST_NAME} PROPERTIES LABELS "${SALOME_TEST_LABEL_SEQ}") +endforeach() diff --git a/src/FeaturesPlugin/tests.set b/src/FeaturesPlugin/tests.set index f239bdc76..37aee497f 100644 --- a/src/FeaturesPlugin/tests.set +++ b/src/FeaturesPlugin/tests.set @@ -17,7 +17,7 @@ # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com # -SET(TEST_NAMES +SET(TEST_NAMES_PARA TestExtrusion.py TestExtrusionOfCompound.py TestExtrusionCut.py @@ -497,7 +497,6 @@ SET(TEST_NAMES Test2817.py Test19065.py Test19066.py - Test19115.py Test19196.py TestFillet1D_ErrorMsg.py TestFillet1D_Vertices_1.py @@ -528,3 +527,9 @@ SET(TEST_NAMES Test23885.py TestNormalToFace.py ) + +SET(TEST_NAMES_SEQ + Test19115.py +) + +set(TEST_NAMES ${TEST_NAMES_PARA} ${TEST_NAMES_SEQ}) -- 2.30.2