diff options
Diffstat (limited to 'lib/jxl/xorshift128plus_test.cc')
-rw-r--r-- | lib/jxl/xorshift128plus_test.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/jxl/xorshift128plus_test.cc b/lib/jxl/xorshift128plus_test.cc index 7514f0e..2ee4535 100644 --- a/lib/jxl/xorshift128plus_test.cc +++ b/lib/jxl/xorshift128plus_test.cc @@ -4,7 +4,6 @@ // license that can be found in the LICENSE file. #include <stdint.h> -#include <stdio.h> #include <algorithm> #include <vector> @@ -13,10 +12,11 @@ #define HWY_TARGET_INCLUDE "lib/jxl/xorshift128plus_test.cc" #include <hwy/foreach_target.h> #include <hwy/highway.h> -#include <hwy/tests/test_util-inl.h> +#include <hwy/tests/hwy_gtest.h> #include "lib/jxl/base/data_parallel.h" -#include "lib/jxl/base/thread_pool_internal.h" +#include "lib/jxl/test_utils.h" +#include "lib/jxl/testing.h" #include "lib/jxl/xorshift128plus-inl.h" HWY_BEFORE_NAMESPACE(); @@ -286,7 +286,7 @@ void TestSeedChanges() { } void TestFloat() { - ThreadPoolInternal pool(8); + test::ThreadPoolForTests pool(8); #ifdef JXL_DISABLE_SLOW_TESTS const uint32_t kMaxSeed = 256; @@ -332,7 +332,7 @@ void TestFloat() { // Not more than one 64-bit zero void TestNotZero() { - ThreadPoolInternal pool(8); + test::ThreadPoolForTests pool(8); #ifdef JXL_DISABLE_SLOW_TESTS const uint32_t kMaxSeed = 500; |