From 2dc61205fddef4cd25d37222d96e28c724ae6ee6 Mon Sep 17 00:00:00 2001 From: "machenbach@chromium.org" Date: Mon, 26 May 2014 13:34:23 +0000 Subject: [PATCH] Send idle notification on ASAN builder for proper tear down. BUG= R=yangguo@chromium.org Review URL: https://codereview.chromium.org/300003005 git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@21498 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- tools/run-tests.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tools/run-tests.py b/tools/run-tests.py index c9c3c9e..b02fcfa 100755 --- a/tools/run-tests.py +++ b/tools/run-tests.py @@ -256,6 +256,9 @@ def ProcessOptions(options): if options.gc_stress: options.extra_flags += GC_STRESS_FLAGS + if options.asan: + options.extra_flags.append("--send-idle-notification") + if options.j == 0: options.j = multiprocessing.cpu_count() -- 2.7.4