build: force a test failure

This commit is contained in:
Eric Wasylishen 2017-03-06 13:48:48 -07:00
parent 54abf89ecf
commit f45a1a715d
1 changed files with 4 additions and 0 deletions

View File

@ -459,3 +459,7 @@ TEST(mathlib, pointsAlongLine) {
ASSERT_TRUE(pointsEqualEpsilon(vec3(1,0,0), res[0], POINT_EQUAL_EPSILON));
ASSERT_TRUE(pointsEqualEpsilon(vec3(2.5,0,0), res[1], POINT_EQUAL_EPSILON));
}
TEST(mathlib, forcefail) {
ASSERT_FALSE(true);
}