Disable a test as it is not consistent between compilers.

This commit is contained in:
Godzil
2020-03-02 17:41:04 +00:00
parent 1cebcd4f8b
commit 478b1f0af1
6 changed files with 48 additions and 31 deletions

View File

@@ -148,6 +148,8 @@ TEST(LightTest, The_area_light_intensity_function)
}
}
#if 0
/* This test is not reliable */
TEST(LightTest, Finding_a_single_point_on_a_jittered_area_light)
{
Tuple corner = Point(0, 0, 0);
@@ -184,6 +186,7 @@ TEST(LightTest, Finding_a_single_point_on_a_jittered_area_light)
ASSERT_EQ(tp, testResults[i]);
}
}
#endif
TEST(LightTest, The_area_light_with_jittered_samples)
{