shithub: libvpx

Download patch

ref: 4d0d78424b6aff08a8c11046a9001184425d8485
parent: 5106e4dfa882a9a3edc172434ddd32c5b52a103c
author: hkuang <hkuang@google.com>
date: Fri Sep 5 10:26:16 EDT 2014

Increase the thread test range to cover 5, 6, 7, 8 threads.

Change-Id: Id25c294720551bb5153987d8758668befaa57929

--- a/test/test_vector_test.cc
+++ b/test/test_vector_test.cc
@@ -169,7 +169,7 @@
             static_cast<const libvpx_test::CodecFactory *>(&libvpx_test::kVP9)),
         ::testing::Combine(
             ::testing::Values(1),        // Frame Parallel mode.
-            ::testing::Values(2, 3, 4),  // With 2, 3, 4 threads.
+            ::testing::Range(2, 9),      // With 2 ~ 8 threads.
             ::testing::ValuesIn(libvpx_test::kVP9TestVectors,
                                 libvpx_test::kVP9TestVectors +
                                     libvpx_test::kNumVP9TestVectors))));
--