From: NATHALIE GORE Date: Mon, 26 Sep 2022 08:54:21 +0000 (+0200) Subject: Add new SHAPER label : SHAPR_SEQ X-Git-Tag: V9_10_0a1~4 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=8f38911e16d14cbd654d91501a0bcb30141ffa14;p=modules%2Fshaper.git Add new SHAPER label : SHAPR_SEQ --- 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})