瀏覽代碼

Fix printing failed test output

default_compile_flags
vector-of-bool 5 年之前
父節點
當前提交
c1ed85eda7
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      test.py

+ 1
- 1
test.py 查看文件

@@ -32,7 +32,7 @@ def run_test_dir(dir: Path, opts: TestOptions) -> bool:
stderr=subprocess.STDOUT,
)
if res.returncode != 0:
print(f'Test failed with exit code [{res.returncode}]:\n{res.stdout}')
print(f'Test failed with exit code [{res.returncode}]:\n{res.stdout.decode()}')
return res.returncode == 0



Loading…
取消
儲存