From 8a411bae665aba016724df50dc76b38b9f7d3619 Mon Sep 17 00:00:00 2001 From: isaacs Date: Sun, 27 May 2012 08:32:31 -0700 Subject: [PATCH] Revert "tests: kill process group on failure" This reverts commit 0cebfc8ddb509fbf5f865bb660b73e96680b3f65. --- tools/test.py | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/tools/test.py b/tools/test.py index 5be025e2d1..d711f9ca1d 100755 --- a/tools/test.py +++ b/tools/test.py @@ -1437,10 +1437,4 @@ def Main(): if __name__ == '__main__': - ret = 0 - try: - ret = Main() - sys.exit(ret) - finally: - if ret and not utils.IsWindows(): - os.killpg(0, signal.SIGKILL) + sys.exit(Main())