Fix erroneous result disposition for {REQUIRE,CHECK}_THAT

This fixes result disposition being ContinueOnFailure |
ContinueOnFailure for CHECK_THAT (obviously an error) and Normal |
ContinueOnFailure for REQUIRE_THAT (less obviously an error, but worse,
as that signals to the pipeline that assertion failure should both abort
and continue the test with ???? happening).
This commit is contained in:
Martin Hořeňovský 2017-06-06 15:12:03 +02:00
parent 07ef028483
commit 6583284731
1 changed files with 1 additions and 1 deletions

View File

@ -162,7 +162,7 @@
try { \
__catchResult.captureMatch( arg, matcher, #matcher ); \
} catch( ... ) { \
__catchResult.useActiveException( resultDisposition | Catch::ResultDisposition::ContinueOnFailure ); \
__catchResult.useActiveException( resultDisposition ); \
} \
INTERNAL_CATCH_REACT( __catchResult ) \
} while( Catch::alwaysFalse() )