Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 804d2dec authored by Xusong Wang's avatar Xusong Wang Committed by Automerger Merge Worker
Browse files

Merge "Exclude invalid test models from QuantizationCouplingTest." into...

Merge "Exclude invalid test models from QuantizationCouplingTest." into rvc-dev am: 60f116b1 am: 1ed1d0b2 am: 51ae35e3

Change-Id: I643f5e9f5e3d87f3796e44815f1e8d51db9b16b6
parents 23c6b6a7 51ae35e3
Loading
Loading
Loading
Loading
+2 −1
Original line number Original line Diff line number Diff line
@@ -952,7 +952,8 @@ INSTANTIATE_GENERATED_TEST(FencedComputeTest,
                           [](const TestModel& testModel) { return !testModel.expectFailure; });
                           [](const TestModel& testModel) { return !testModel.expectFailure; });


INSTANTIATE_GENERATED_TEST(QuantizationCouplingTest, [](const TestModel& testModel) {
INSTANTIATE_GENERATED_TEST(QuantizationCouplingTest, [](const TestModel& testModel) {
    return testModel.hasQuant8CoupledOperands() && testModel.main.operations.size() == 1;
    return !testModel.expectFailure && testModel.hasQuant8CoupledOperands() &&
           testModel.main.operations.size() == 1;
});
});


INSTANTIATE_GENERATED_TEST(InfiniteLoopTimeoutTest, [](const TestModel& testModel) {
INSTANTIATE_GENERATED_TEST(InfiniteLoopTimeoutTest, [](const TestModel& testModel) {