Exclude invalid test models from QuantizationCouplingTest.
Bug: 151674996
Test: 1.3 VTS
Change-Id: I381eb6d39926054279f1791bd71d28a963acc0b9
Merged-In: I381eb6d39926054279f1791bd71d28a963acc0b9
(cherry picked from commit 962fdb26ca
)
This commit is contained in:
parent
9464d94434
commit
3e64ecc347
1 changed files with 2 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue