diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-18 00:50:21 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-18 00:50:21 +0000 |
commit | d3ee6a97607e3b27b28e32eb9ec16d92241a3600 (patch) | |
tree | 637630ebbf420c53076cd329e67eabbb844ce374 /base/process/process_util_unittest.cc | |
parent | c2661f83e32603941aaca380389674886664ccad (diff) | |
download | chromium_src-d3ee6a97607e3b27b28e32eb9ec16d92241a3600.zip chromium_src-d3ee6a97607e3b27b28e32eb9ec16d92241a3600.tar.gz chromium_src-d3ee6a97607e3b27b28e32eb9ec16d92241a3600.tar.bz2 |
Cleanup: Remove a reference to a heapchecker define that no longer exists.
BUG=325380
Review URL: https://codereview.chromium.org/137063015
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@245683 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/process/process_util_unittest.cc')
-rw-r--r-- | base/process/process_util_unittest.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/process/process_util_unittest.cc b/base/process/process_util_unittest.cc index 6bfc1d0..23d5181 100644 --- a/base/process/process_util_unittest.cc +++ b/base/process/process_util_unittest.cc @@ -517,7 +517,7 @@ int ProcessUtilTest::CountOpenFDsInChild() { HANDLE_EINTR(read(fds[0], &num_open_files, sizeof(num_open_files))); CHECK_EQ(bytes_read, static_cast<ssize_t>(sizeof(num_open_files))); -#if defined(THREAD_SANITIZER) || defined(USE_HEAPCHECKER) +#if defined(THREAD_SANITIZER) // Compiler-based ThreadSanitizer makes this test slow. CHECK(base::WaitForSingleProcess(handle, base::TimeDelta::FromSeconds(3))); #else |