From 8cc259645cc5f634d983d0e9a792e0dd8ed9fc34 Mon Sep 17 00:00:00 2001 From: Daniel Summer Date: Fri, 17 Jul 2026 17:21:20 -0400 Subject: [PATCH] Re-enable row_mt=1 combos in AVxEncoderThreadTestLarge These rows were disabled pending issue #79, which is fixed and closed. All 16 row_mt=1 combos (cpu-used {0,1,3,5} x tile cols/rows {1,6}) pass on current main, including encode/decode MD5 and frame-size checks across 2, 4, and 64 threads. Co-Authored-By: Claude Fable 5 Claude-Session: https://claude.ai/code/session_01Uqub6MtkVTYS2t5ZGcRU92 --- test/ethread_test.cc | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/test/ethread_test.cc b/test/ethread_test.cc index 1223932c88..f6ac275ede 100644 --- a/test/ethread_test.cc +++ b/test/ethread_test.cc @@ -420,11 +420,9 @@ GTEST_ALLOW_UNINSTANTIATED_PARAMETERIZED_TEST(AVxFirstPassEncoderThreadTest); GTEST_ALLOW_UNINSTANTIATED_PARAMETERIZED_TEST(AVxEncoderThreadTest); // Test cpu_used 0, 1, 3 and 5. -// TODO(urvang): Once https://github.com/AOMediaCodec/avm/issues/79 is fixed, -// change last parameter back to (0, 1) to re-enable unit tests with row-mt = 1. AV2_INSTANTIATE_TEST_SUITE(AVxEncoderThreadTestLarge, ::testing::Values(::libavm_test::kOnePassGood), ::testing::Values(0, 1, 3, 5), ::testing::Values(1, 6), ::testing::Values(1, 6), - ::testing::Values(0)); + ::testing::Values(0, 1)); } // namespace