| Index: src/trusted/validator_arm/actual_vs_baseline.cc
|
| ===================================================================
|
| --- src/trusted/validator_arm/actual_vs_baseline.cc (revision 8517)
|
| +++ src/trusted/validator_arm/actual_vs_baseline.cc (working copy)
|
| @@ -44,12 +44,13 @@
|
| CheckSetsZIfBitsClear();
|
| }
|
|
|
| -void ActualVsBaselineTester::ApplySanityChecks(
|
| +bool ActualVsBaselineTester::ApplySanityChecks(
|
| nacl_arm_dec::Instruction inst,
|
| const NamedClassDecoder& decoder) {
|
| UNREFERENCED_PARAMETER(inst);
|
| UNREFERENCED_PARAMETER(decoder);
|
| - GTEST_FAIL() << "Sanity Checks shouldn't be applied!";
|
| + EXPECT_TRUE(false) << "Sanity Checks shouldn't be applied!";
|
| + return false;
|
| }
|
|
|
| const NamedClassDecoder& ActualVsBaselineTester::ExpectedDecoder() const {
|
|
|