Ignore just the failing cone tests, not the entire set of cone tests
This commit is contained in:
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);
|
||||
|
Reference in New Issue
Block a user