We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90fbc5b commit ce961c5Copy full SHA for ce961c5
lldb/test/API/functionalities/avoids-fd-leak/TestFdLeak.py
@@ -26,7 +26,7 @@ def test_fd_leak_basic(self):
26
@skipIfTargetAndroid() # Android have some other file descriptors open by the shell
27
@skipIfDarwinEmbedded # <rdar://problem/33888742> # debugserver on ios has an extra fd open on launch
28
def test_fd_leak_log(self):
29
- self.do_test(["log enable -f '/dev/null' lldb commands"])
+ self.do_test(["log enable -f '{}' lldb commands".format(os.devnull)])
30
31
def do_test(self, commands):
32
self.build()
0 commit comments