Ignore just the failing cone tests, not the entire set of cone tests

This commit is contained in:
Zachary D. Rowitsch
2020-10-17 18:42:42 -04:00
parent 18fdf844bc
commit 6ed7ef5bc0
2 changed files with 2 additions and 1 deletions
test/module_shapes

@ -46,7 +46,6 @@ target_link_libraries(module_shapes_cone
Unity
m)
add_test(shapes_cone module_shapes_cone)
set_tests_properties(shapes_cone PROPERTIES DISABLED True)
add_executable(module_shapes_group
test_group.c)

@ -43,6 +43,7 @@ void test_intersecting_cone_with_ray() {
}
void test_intersecting_cone_with_ray_parallel_to_one_of_its_halves() {
TEST_IGNORE();
CONE_Cone* c = CONE_new();
RAY_Ray ray;
@ -81,6 +82,7 @@ void helper_intersect_cone_end_cap(double px, double py, double pz,
}
void test_intersect_cone_end_cap() {
TEST_IGNORE();
helper_intersect_cone_end_cap(0, 0, -5, 0, 1, 0, 0);
helper_intersect_cone_end_cap(0, 0, -0.25, 0, 1, 1, 2);
helper_intersect_cone_end_cap(0, 0, -0.25, 0, 1, 0, 4);