| Index: syzygy/agent/asan/memory_interceptors_unittest.cc
|
| diff --git a/syzygy/agent/asan/memory_interceptors_unittest.cc b/syzygy/agent/asan/memory_interceptors_unittest.cc
|
| index f997cb76287311fd3d0cbddd9848915087030621..bc8c473e5caf4e5a066a26ebbb805c42ab7a899f 100644
|
| --- a/syzygy/agent/asan/memory_interceptors_unittest.cc
|
| +++ b/syzygy/agent/asan/memory_interceptors_unittest.cc
|
| @@ -119,8 +119,7 @@ static const TestMemoryInterceptors::ClangInterceptFunction
|
| #else
|
| #define DEFINE_CLANG_INTERCEPT_FUNCTION_TABLE(access_size, access_mode_str, \
|
| access_mode) \
|
| - { asan_##access_mode_str##access_size##_8tb, access_size } \
|
| - , {asan_##access_mode_str##access_size##_128tb, access_size},
|
| + {asan_##access_mode_str##access_size##_128tb, access_size},
|
| #endif
|
| CLANG_ASAN_MEM_INTERCEPT_FUNCTIONS(
|
| DEFINE_CLANG_INTERCEPT_FUNCTION_TABLE)
|
| @@ -316,7 +315,7 @@ TYPED_TEST(MemoryInterceptorsTypedTest, TestRedirectorsSmallMemory) {
|
| #ifndef _WIN64
|
| .WillRepeatedly(Return(MEMORY_ACCESSOR_MODE_2G));
|
| #else
|
| - .WillRepeatedly(Return(MEMORY_ACCESSOR_MODE_8TB));
|
| + .WillRepeatedly(Return(MEMORY_ACCESSOR_MODE_128TB));
|
| #endif
|
|
|
| // Test valid, underrun and overrun.
|
|
|