mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 11:36:00 +00:00
Exclude invalid test models from QuantizationCouplingTest.
Bug: 151674996 Test: 1.3 VTS Change-Id: I381eb6d39926054279f1791bd71d28a963acc0b9
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user