Skip to content

Commit

Permalink
Try something more
Browse files Browse the repository at this point in the history
  • Loading branch information
ceriottm committed Nov 16, 2023
1 parent aaf6f6e commit 9b8d8a5
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions ipi_tests/test_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -280,8 +280,9 @@ def run(self, cwd, nid):
self.call_ipi,
cwd=(self.tmp_dir),
shell=True,
#stdout=sp.PIPE,
#stderr=sp.PIPE,
stdin=sp.DEVNULL,
stdout=sp.PIPE,
stderr=sp.PIPE,
)

if len(clients) > 0:
Expand Down Expand Up @@ -339,7 +340,9 @@ def run(self, cwd, nid):

# print("client", client, "cmd:", cmd)
driver = sp.Popen(
cmd, cwd=(cwd), shell=True, #stdout=sp.PIPE, stderr=sp.PIPE
cmd, cwd=(cwd), shell=True, stdin=sp.DEVNULL,
stdout=sp.PIPE,
stderr=sp.PIPE,
)

drivers.append(driver)
Expand Down

0 comments on commit 9b8d8a5

Please sign in to comment.