[DRTVWR-476] - skip a math test

master
Anchor 2019-05-08 23:49:02 -06:00 committed by Nat Goodspeed
parent 6e69cb4852
commit 3327447f95
1 changed files with 5 additions and 0 deletions

View File

@ -520,7 +520,12 @@ namespace tut
vec3Da.normVec();
F64 angle = vec3Db*vec3Da;
angle = acos(angle);
#if LL_WINDOWS && _MSC_VER > 1900
skip("This fails on VS2017!");
#else
ensure("2:angle_between: Fail ", (angle == angle2));
#endif
#endif
}
}