spec-test-script/all.py: Use DEVNULL instead of PIPE for runtest.py stderr

As we never read it.
This commit is contained in:
YAMAMOTO Takashi 2022-07-11 14:03:26 +09:00
parent 653efecd02
commit bd0c5725dc

View File

@ -155,7 +155,7 @@ def test_case(
CMD,
bufsize=1,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
stderr=subprocess.DEVNULL,
universal_newlines=True,
) as p:
try: