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

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

Exclude invalid test models from QuantizationCouplingTest. am: 3e64ecc3

Change-Id: I11a711f1e85e984282d6c22adcc4c9093c208da6
parents 765d6eb5 3e64ecc3
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -952,7 +952,8 @@ INSTANTIATE_GENERATED_TEST(FencedComputeTest,
                           [](const TestModel& testModel) { return !testModel.expectFailure; });

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) {