1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
|
*** Settings ***
Test Setup Prepare Test
Test Teardown Cleanup Test
Force Tags smoke daily
Library OperatingSystem
Library lib/VorpatestLibrary.py
*** Variables ***
${DATADIR} %{VORPATEST_ROOT_DIR}${/}data${/}CDT2d
*** Test Cases ***
constraints_100_1.obj
[Tags] daily_valgrind
Run Test
constraints_100_2.obj
[Tags] daily_valgrind
Run Test
constraints_100_3.obj
[Tags] daily_valgrind
Run Test
constraints_100_4.obj
[Tags] daily_valgrind
Run Test
constraints_100_5.obj
[Tags] daily_valgrind
Run Test
constraints_100_6.obj
[Tags] daily_valgrind
Run Test
constraints_100_7.obj
[Tags] daily_valgrind
Run Test
constraints_100_8.obj
[Tags] daily_valgrind
Run Test
constraints_100_9.obj
[Tags] daily_valgrind
Run Test
constraints_100_10.obj
[Tags] daily_valgrind
Run Test
constraints_100_11.obj
[Tags] daily_valgrind
Run Test
constraints_100K.obj
[Tags] daily_valgrind
Run Test
triangle_no_duplicated_constraints.obj
[Tags] daily_valgrind
Run Test
triangle_duplicated_constraints.obj
[Tags] daily_valgrind
Run Test
constraints_finally_2.obj
[Tags] daily_valgrind
Run Test Remove External Triangles
constraints_finally_3.obj
[Tags] daily_valgrind
Run Test Remove External Triangles
*** Keywords ***
Run Test
[Arguments] ${input_name}=${TEST NAME} @{options}
[Documentation] Runs a vorpaline constrained Delaunay 2d test
... The name of the input file is taken from the test name.
run command test_CDT_2d @{options} ${DATADIR}${/}${input_name}
Run Test Remove External Triangles
[Arguments] ${input_name}=${TEST NAME} @{options}
[Documentation] Runs a vorpaline constrained Delaunay 2d test
... The name of the input file is taken from the test name.
run command test_CDT_2d @{options} remove_external_triangles=true ${DATADIR}${/}${input_name}
|