diff options
author | Reid Kleckner <rnk@google.com> | 2015-08-31 21:42:02 +0000 |
---|---|---|
committer | Reid Kleckner <rnk@google.com> | 2015-08-31 21:42:02 +0000 |
commit | 642f6d3ffd1d2e028f234d7867be14fdc2e615ac (patch) | |
tree | f849ad54accc8d08c173fc742cf7c16734ba5dc5 | |
parent | 8bb3d04adc6e3031696b0d9f3c00e71cb054969c (diff) | |
download | bcm5719-llvm-642f6d3ffd1d2e028f234d7867be14fdc2e615ac.tar.gz bcm5719-llvm-642f6d3ffd1d2e028f234d7867be14fdc2e615ac.zip |
Revert "[lit] Speculatively fix PR24554 by manually closing the process handle"
This reverts commit r245946. It didn't help the problem:
http://lab.llvm.org:8011/builders/sanitizer-windows/builds/9179/steps/run%20tests/logs/stdio
LINK : fatal error LNK1104: cannot open file
llvm-svn: 246491
-rw-r--r-- | llvm/utils/lit/lit/TestRunner.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/llvm/utils/lit/lit/TestRunner.py b/llvm/utils/lit/lit/TestRunner.py index 1fa43b394f7..055a282f3bc 100644 --- a/llvm/utils/lit/lit/TestRunner.py +++ b/llvm/utils/lit/lit/TestRunner.py @@ -257,9 +257,6 @@ def executeShCmd(cmd, shenv, results): exitCode = None for i,(out,err) in enumerate(procData): res = procs[i].wait() - # On Windows, manually close the process handles. - if kIsWindows: - procs[i]._handle.Close() # Detect Ctrl-C in subprocess. if res == -signal.SIGINT: raise KeyboardInterrupt |