From f0b96132085de8ad62da7b10cc0c5ece8f003d58 Mon Sep 17 00:00:00 2001 From: "nsylvain@chromium.org" Date: Sat, 12 Sep 2009 22:56:08 +0000 Subject: Change the purify tests to run with the default memory allocator instead of tcmalloc. BUG=21432 Review URL: http://codereview.chromium.org/192081 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@26083 0039d316-1c4b-4281-b951-d872f2087c98 --- tools/purify/chrome_tests.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tools/purify/chrome_tests.py b/tools/purify/chrome_tests.py index b6cdf7e..d5a4c3c 100644 --- a/tools/purify/chrome_tests.py +++ b/tools/purify/chrome_tests.py @@ -43,6 +43,10 @@ class ChromeTests: if test not in self._test_list: raise TestNotFound("Unknown test: %s" % test) + # Make sure tests running under purify are using the + # normal memory allocator instead of tcmalloc. + os.environ["CHROME_ALLOCATOR"] = "winheap" + self._options = options self._args = args self._test = test -- cgit v1.1