aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHirokazu Honda <hiroh@google.com>2018-05-22 09:49:58 +0900
committerHirokazu Honda <hiroh@google.com>2018-05-22 10:13:26 +0900
commitec81e21eaaed53b6035c534f904e5c61c3785ac6 (patch)
treef59ecf6c7518fcfc2afe5d1530dcb7800860f3b7
parentb5d109a967a7571ce5ff9218c1eb26e440ee62d0 (diff)
downloadv4l2_codec2-ec81e21eaaed53b6035c534f904e5c61c3785ac6.tar.gz
Do not configure C2PortBlockPoolsTuning parameter in C2VDAComponent_test
C2PortBlockPoolsTuning parameter was gotten rid of in ag/4054729. configuring it shouldn't be tested. Bug: 77835232 Test: C2VDAComponent_test Change-Id: I7b669e0cee0fc8ef2e78205b986f6159250f29fc
-rw-r--r--tests/C2VDAComponent_test.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/C2VDAComponent_test.cpp b/tests/C2VDAComponent_test.cpp
index 10b2f40..14087f7 100644
--- a/tests/C2VDAComponent_test.cpp
+++ b/tests/C2VDAComponent_test.cpp
@@ -437,12 +437,6 @@ TEST_P(C2VDAComponentParamTest, SimpleDecodeTest) {
mTestVideoFile->mComponentName, 0, std::make_shared<C2ReflectorHelper>()));
ASSERT_EQ(component->setListener_vb(mListener, C2_DONT_BLOCK), C2_OK);
- std::unique_ptr<C2PortBlockPoolsTuning::output> pools =
- C2PortBlockPoolsTuning::output::AllocUnique(
- {static_cast<uint64_t>(C2BlockPool::BASIC_GRAPHIC)});
- std::vector<std::unique_ptr<C2SettingResult>> result;
- ASSERT_EQ(component->intf()->config_vb({pools.get()}, C2_DONT_BLOCK, &result), C2_OK);
- ASSERT_EQ(result.size(), 0u);
ASSERT_EQ(component->start(), C2_OK);
std::atomic_bool running(true);