Removed function pointer comparison test from approvals as it has different serilaisation behaviour in MSVC

This commit is contained in:
Phil Nash
2017-09-07 15:04:30 +01:00
parent ca7021ae19
commit 6105282c4f
6 changed files with 11 additions and 46 deletions

View File

@@ -434,7 +434,8 @@ namespace utility {
inline static void synchronizing_callback( void * ) { }
}
TEST_CASE("#925: comparing function pointer to function address failed to compile") {
TEST_CASE("#925: comparing function pointer to function address failed to compile", "[!nonportable]" ) {
TestClass test;
REQUIRE(utility::synchronizing_callback != test.testMethod_uponComplete_arg);
}