diff options
| author | Adrian McCarthy <amccarth@google.com> | 2019-06-18 16:36:57 +0000 |
|---|---|---|
| committer | Adrian McCarthy <amccarth@google.com> | 2019-06-18 16:36:57 +0000 |
| commit | 46e6e132987504b127a9582dd2003c734fabbd5d (patch) | |
| tree | a49e90cad1a71e563d76eca0789e4279564cff72 | |
| parent | 3559d2224ee470fd3c2eb6cac0b4714b889aeb3c (diff) | |
| download | bcm5719-llvm-46e6e132987504b127a9582dd2003c734fabbd5d.tar.gz bcm5719-llvm-46e6e132987504b127a9582dd2003c734fabbd5d.zip | |
Fix some lit test ResourceWarnings on Windows
When running LLDB lit tests on Windows, the system selects a debug version
of Python, which was issuing lots of ResourceWarnings about files that
weren't closed. There are two kinds of them, and each test triggered one
of each.
This patch fixes one kind by ensuring TestRunner explicitly close the
temporary files created for routing stderr. This is important on Windows
but has no net effect on Posix systems.
The remaining ResourceWarnings are more elusive; the bug may lie in
the Python library subprocess.py, and it may be Windows-specific.
Differential Revision: https://reviews.llvm.org/D63102
llvm-svn: 363700
| -rw-r--r-- | llvm/utils/lit/lit/TestRunner.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/utils/lit/lit/TestRunner.py b/llvm/utils/lit/lit/TestRunner.py index fdaaa922d55..69fa4e0d47b 100644 --- a/llvm/utils/lit/lit/TestRunner.py +++ b/llvm/utils/lit/lit/TestRunner.py @@ -991,6 +991,7 @@ def _executeShCmd(cmd, shenv, results, timeoutHelper): for i,f in stderrTempFiles: f.seek(0, 0) procData[i] = (procData[i][0], f.read()) + f.close() exitCode = None for i,(out,err) in enumerate(procData): |

