mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2024-12-26 01:10:36 +05:00
Add .py extension to tests filenames
This commit is contained in:
parent
f12adf62b7
commit
3ad620d26c
@ -24,7 +24,7 @@ SALOME_GENERATE_TESTS_ENVIRONMENT(tests_env)
|
|||||||
FOREACH(test ${GOOD_TESTS})
|
FOREACH(test ${GOOD_TESTS})
|
||||||
GET_FILENAME_COMPONENT(testname ${test} NAME_WE)
|
GET_FILENAME_COMPONENT(testname ${test} NAME_WE)
|
||||||
ADD_TEST(NAME ${testname}
|
ADD_TEST(NAME ${testname}
|
||||||
COMMAND ${PYTHON_EXECUTABLE} -B ${CMAKE_SOURCE_DIR}/doc/salome/examples/testme.py ${CMAKE_CURRENT_SOURCE_DIR}/${test}.py)
|
COMMAND ${PYTHON_EXECUTABLE} -B ${CMAKE_SOURCE_DIR}/doc/salome/examples/testme.py ${CMAKE_CURRENT_SOURCE_DIR}/${test})
|
||||||
SET_TESTS_PROPERTIES(${testname} PROPERTIES ENVIRONMENT "${tests_env}")
|
SET_TESTS_PROPERTIES(${testname} PROPERTIES ENVIRONMENT "${tests_env}")
|
||||||
ENDFOREACH()
|
ENDFOREACH()
|
||||||
|
|
||||||
|
@ -24,7 +24,8 @@ SET(TIMEOUT 300)
|
|||||||
INCLUDE(tests.set)
|
INCLUDE(tests.set)
|
||||||
|
|
||||||
FOREACH(tfile ${GOOD_TESTS})
|
FOREACH(tfile ${GOOD_TESTS})
|
||||||
SET(TEST_NAME GEOM_${tfile})
|
GET_FILENAME_COMPONENT(BASE_NAME ${tfile} NAME_WE)
|
||||||
ADD_TEST(${TEST_NAME} python ${SALOME_TEST_DRIVER} ${TIMEOUT} ${tfile}.py)
|
SET(TEST_NAME GEOM_${BASE_NAME})
|
||||||
|
ADD_TEST(${TEST_NAME} python ${SALOME_TEST_DRIVER} ${TIMEOUT} ${tfile})
|
||||||
SET_TESTS_PROPERTIES(${TEST_NAME} PROPERTIES LABELS "${COMPONENT_NAME}")
|
SET_TESTS_PROPERTIES(${TEST_NAME} PROPERTIES LABELS "${COMPONENT_NAME}")
|
||||||
ENDFOREACH()
|
ENDFOREACH()
|
||||||
|
@ -18,121 +18,121 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
SET(BAD_TESTS
|
SET(BAD_TESTS
|
||||||
repairing_operations_ex09
|
repairing_operations_ex09.py
|
||||||
)
|
)
|
||||||
|
|
||||||
SET(GOOD_TESTS
|
SET(GOOD_TESTS
|
||||||
3dsketcher
|
3dsketcher.py
|
||||||
advanced_geom_objs_ex01
|
advanced_geom_objs_ex01.py
|
||||||
advanced_geom_objs_ex02
|
advanced_geom_objs_ex02.py
|
||||||
advanced_geom_objs_ex03
|
advanced_geom_objs_ex03.py
|
||||||
angle
|
angle.py
|
||||||
arranging_study_objects
|
arranging_study_objects.py
|
||||||
basic_geom_objs_ex01
|
basic_geom_objs_ex01.py
|
||||||
basic_geom_objs_ex02
|
basic_geom_objs_ex02.py
|
||||||
basic_geom_objs_ex03
|
basic_geom_objs_ex03.py
|
||||||
basic_geom_objs_ex04
|
basic_geom_objs_ex04.py
|
||||||
basic_geom_objs_ex05
|
basic_geom_objs_ex05.py
|
||||||
basic_geom_objs_ex06
|
basic_geom_objs_ex06.py
|
||||||
basic_geom_objs_ex07
|
basic_geom_objs_ex07.py
|
||||||
basic_geom_objs_ex08
|
basic_geom_objs_ex08.py
|
||||||
basic_geom_objs_ex09
|
basic_geom_objs_ex09.py
|
||||||
basic_geom_objs_ex10
|
basic_geom_objs_ex10.py
|
||||||
basic_operations_ex01
|
basic_operations_ex01.py
|
||||||
basic_operations_ex02
|
basic_operations_ex02.py
|
||||||
basic_operations_ex03
|
basic_operations_ex03.py
|
||||||
basic_operations_ex04
|
basic_operations_ex04.py
|
||||||
basic_properties
|
basic_properties.py
|
||||||
blocks_operations_ex01
|
blocks_operations_ex01.py
|
||||||
blocks_operations_ex02
|
blocks_operations_ex02.py
|
||||||
blocks_operations_ex03
|
blocks_operations_ex03.py
|
||||||
boolean_operations_ex01
|
boolean_operations_ex01.py
|
||||||
boolean_operations_ex02
|
boolean_operations_ex02.py
|
||||||
boolean_operations_ex03
|
boolean_operations_ex03.py
|
||||||
boolean_operations_ex04
|
boolean_operations_ex04.py
|
||||||
bounding_box
|
bounding_box.py
|
||||||
building_by_blocks_ex01
|
building_by_blocks_ex01.py
|
||||||
building_by_blocks_ex02
|
building_by_blocks_ex02.py
|
||||||
center_of_mass
|
center_of_mass.py
|
||||||
check_compound_of_blocks
|
check_compound_of_blocks.py
|
||||||
check_self_intersections
|
check_self_intersections.py
|
||||||
check_shape
|
check_shape.py
|
||||||
complex_objs_ex01
|
complex_objs_ex01.py
|
||||||
complex_objs_ex02
|
complex_objs_ex02.py
|
||||||
complex_objs_ex03
|
complex_objs_ex03.py
|
||||||
complex_objs_ex04
|
complex_objs_ex04.py
|
||||||
complex_objs_ex05
|
complex_objs_ex05.py
|
||||||
complex_objs_ex06
|
complex_objs_ex06.py
|
||||||
complex_objs_ex07
|
complex_objs_ex07.py
|
||||||
complex_objs_ex08
|
complex_objs_ex08.py
|
||||||
complex_objs_ex09
|
complex_objs_ex09.py
|
||||||
complex_objs_ex10
|
complex_objs_ex10.py
|
||||||
complex_objs_ex11
|
complex_objs_ex11.py
|
||||||
fast_intersection
|
fast_intersection.py
|
||||||
free_boundaries
|
free_boundaries.py
|
||||||
free_faces
|
free_faces.py
|
||||||
GEOM_box
|
GEOM_box.py
|
||||||
get_non_blocks
|
get_non_blocks.py
|
||||||
import_export
|
import_export.py
|
||||||
inertia
|
inertia.py
|
||||||
min_distance
|
min_distance.py
|
||||||
normal_face
|
normal_face.py
|
||||||
notebook_geom
|
notebook_geom.py
|
||||||
polyline
|
polyline.py
|
||||||
point_coordinates
|
point_coordinates.py
|
||||||
primitives_ex01
|
primitives_ex01.py
|
||||||
primitives_ex02
|
primitives_ex02.py
|
||||||
primitives_ex03
|
primitives_ex03.py
|
||||||
primitives_ex04
|
primitives_ex04.py
|
||||||
primitives_ex05
|
primitives_ex05.py
|
||||||
primitives_ex06
|
primitives_ex06.py
|
||||||
primitives_ex07
|
primitives_ex07.py
|
||||||
repairing_operations_ex01
|
repairing_operations_ex01.py
|
||||||
repairing_operations_ex02
|
repairing_operations_ex02.py
|
||||||
repairing_operations_ex03
|
repairing_operations_ex03.py
|
||||||
repairing_operations_ex04
|
repairing_operations_ex04.py
|
||||||
repairing_operations_ex05
|
repairing_operations_ex05.py
|
||||||
repairing_operations_ex06
|
repairing_operations_ex06.py
|
||||||
repairing_operations_ex07
|
repairing_operations_ex07.py
|
||||||
repairing_operations_ex08
|
repairing_operations_ex08.py
|
||||||
repairing_operations_ex10
|
repairing_operations_ex10.py
|
||||||
repairing_operations_ex11
|
repairing_operations_ex11.py
|
||||||
repairing_operations_ex12
|
repairing_operations_ex12.py
|
||||||
sketcher
|
sketcher.py
|
||||||
tolerance
|
tolerance.py
|
||||||
topological_geom_objs_ex01
|
topological_geom_objs_ex01.py
|
||||||
topological_geom_objs_ex02
|
topological_geom_objs_ex02.py
|
||||||
topological_geom_objs_ex03
|
topological_geom_objs_ex03.py
|
||||||
topological_geom_objs_ex04
|
topological_geom_objs_ex04.py
|
||||||
topological_geom_objs_ex05
|
topological_geom_objs_ex05.py
|
||||||
topological_geom_objs_ex06
|
topological_geom_objs_ex06.py
|
||||||
transformation_operations_ex01
|
transformation_operations_ex01.py
|
||||||
transformation_operations_ex02
|
transformation_operations_ex02.py
|
||||||
transformation_operations_ex03
|
transformation_operations_ex03.py
|
||||||
transformation_operations_ex04
|
transformation_operations_ex04.py
|
||||||
transformation_operations_ex05
|
transformation_operations_ex05.py
|
||||||
transformation_operations_ex06
|
transformation_operations_ex06.py
|
||||||
transformation_operations_ex07
|
transformation_operations_ex07.py
|
||||||
transformation_operations_ex08
|
transformation_operations_ex08.py
|
||||||
transformation_operations_ex09
|
transformation_operations_ex09.py
|
||||||
transformation_operations_ex10
|
transformation_operations_ex10.py
|
||||||
transformation_operations_ex11
|
transformation_operations_ex11.py
|
||||||
transformation_operations_ex12
|
transformation_operations_ex12.py
|
||||||
transformation_operations_ex13
|
transformation_operations_ex13.py
|
||||||
transformation_operations_ex14
|
transformation_operations_ex14.py
|
||||||
viewing_geom_objs_ex01
|
viewing_geom_objs_ex01.py
|
||||||
viewing_geom_objs_ex02
|
viewing_geom_objs_ex02.py
|
||||||
viewing_geom_objs_ex03
|
viewing_geom_objs_ex03.py
|
||||||
viewing_geom_objs_ex04
|
viewing_geom_objs_ex04.py
|
||||||
whatis
|
whatis.py
|
||||||
working_with_groups_ex01
|
working_with_groups_ex01.py
|
||||||
working_with_groups_ex02
|
working_with_groups_ex02.py
|
||||||
working_with_groups_ex03
|
working_with_groups_ex03.py
|
||||||
working_with_groups_ex04
|
working_with_groups_ex04.py
|
||||||
working_with_groups_ex05
|
working_with_groups_ex05.py
|
||||||
working_with_groups_ex06
|
working_with_groups_ex06.py
|
||||||
GEOM_Field
|
GEOM_Field.py
|
||||||
check_self_intersections_fast # OCC > 6.9.0
|
check_self_intersections_fast.py # OCC > 6.9.0
|
||||||
)
|
)
|
||||||
|
|
||||||
SET(EXAMPLES_TESTS ${BAD_TESTS} ${GOOD_TESTS} testme)
|
SET(EXAMPLES_TESTS ${BAD_TESTS} ${GOOD_TESTS} testme)
|
||||||
|
Loading…
Reference in New Issue
Block a user