Remove testing of CATCH_CONFIG_FALLBACK_STRINGIFIER from SelfTest

This removes a potential ODR violation and the configuration option
is tested in its own separate binary anyway.
This commit is contained in:
Martin Hořeňovský
2020-01-21 15:14:24 +01:00
parent 2b696c4388
commit d63681f707
4 changed files with 12 additions and 22 deletions

View File

@@ -12545,9 +12545,9 @@ with expansion:
"{ 1, 2, 3, 4 }" == "{ 1, 2, 3, 4 }"
ToStringWhich.tests.cpp:<line number>: PASSED:
REQUIRE( ::Catch::Detail::stringify(disabled_range{}) == "{ !!! }" )
REQUIRE( ::Catch::Detail::stringify(disabled_range{}) == "{?}" )
with expansion:
"{ !!! }" == "{ !!! }"
"{?}" == "{?}"
-------------------------------------------------------------------------------
stringify( has_maker )
@@ -12582,9 +12582,9 @@ ToStringWhich.tests.cpp:<line number>
...............................................................................
ToStringWhich.tests.cpp:<line number>: PASSED:
REQUIRE( ::Catch::Detail::stringify(item) == "{ !!! }" )
REQUIRE( ::Catch::Detail::stringify(item) == "{?}" )
with expansion:
"{ !!! }" == "{ !!! }"
"{?}" == "{?}"
-------------------------------------------------------------------------------
stringify( has_operator )