diff options
author | isaacs <i@izs.me> | 2012-05-27 08:32:31 -0700 |
---|---|---|
committer | isaacs <i@izs.me> | 2012-05-28 20:02:49 -0700 |
commit | 8a411bae665aba016724df50dc76b38b9f7d3619 (patch) | |
tree | 88c49c12fb75e7548b7ebb06c6f47afb41d7f3b0 /tools/test.py | |
parent | 719376730d8d1db7bd98c7688906d0a543154f6b (diff) | |
download | node-new-8a411bae665aba016724df50dc76b38b9f7d3619.tar.gz |
Revert "tests: kill process group on failure"
This reverts commit 0cebfc8ddb509fbf5f865bb660b73e96680b3f65.
Diffstat (limited to 'tools/test.py')
-rwxr-xr-x | tools/test.py | 8 |
1 files changed, 1 insertions, 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()) |