소스 검색

Prettier test output

default_compile_flags
vector-of-bool 5 년 전
부모
커밋
fa20ca454d
1개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  1. +5
    -1
      test.py

+ 5
- 1
test.py 파일 보기

@@ -13,7 +13,7 @@ class TestOptions(NamedTuple):


def run_test_dir(dir: Path, opts: TestOptions) -> bool:
print(f'Running test: {dir.name} ...')
print(f'Running test: {dir.name} ', end='')
out_dir = dir / '_build'
if out_dir.exists():
shutil.rmtree(out_dir)
@@ -26,13 +26,17 @@ def run_test_dir(dir: Path, opts: TestOptions) -> bool:
'--tests',
f'--toolchain={opts.toolchain}',
f'--out-dir={out_dir}',
f'--export-name={dir.stem}',
],
cwd=dir,
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT,
)
if res.returncode != 0:
print('- FAILED')
print(f'Test failed with exit code [{res.returncode}]:\n{res.stdout.decode()}')
else:
print('- PASSED')
return res.returncode == 0



Loading…
취소
저장