]> SALOME platform Git repositories - modules/shaper.git/commitdiff
Salome HOME
Add new SHAPER label : SHAPR_SEQ
authorNATHALIE GORE <ng13417n@dsp0940623.atlas.edf.fr>
Mon, 26 Sep 2022 08:54:21 +0000 (10:54 +0200)
committerNATHALIE GORE <ng13417n@dsp0940623.atlas.edf.fr>
Mon, 26 Sep 2022 08:54:21 +0000 (10:54 +0200)
src/CTestTestfileInstall.cmake
src/FeaturesPlugin/CTestTestfileInstall.cmake
src/FeaturesPlugin/tests.set

index ca18e37d3acd6ca22677f14bef60a8a2f4d21831..b9e1c1ebf5728b3d470ef6cd0e3471e320dd0257 100644 (file)
@@ -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
index fd3d28560231bef0c16452c98ed03e99983b2053..a43c441a5a3193874dfc68b53fac9e22b7d67802 100644 (file)
 
 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()
index f239bdc761c6488c15316ed5d9ad2c809ec6fefe..37aee497f7c9d45c4cbe29cc6c490fbb7dd10263 100644 (file)
@@ -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})