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()
# 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
Test2817.py
Test19065.py
Test19066.py
- Test19115.py
Test19196.py
TestFillet1D_ErrorMsg.py
TestFillet1D_Vertices_1.py
Test23885.py
TestNormalToFace.py
)
+
+SET(TEST_NAMES_SEQ
+ Test19115.py
+)
+
+set(TEST_NAMES ${TEST_NAMES_PARA} ${TEST_NAMES_SEQ})