Przeglądaj źródła

Fix tests: Pass toolchain file through as absolute path

default_compile_flags
vector-of-bool 5 lat temu
rodzic
commit
ccf8e021b0
1 zmienionych plików z 4 dodań i 1 usunięć
  1. +4
    -1
      tools/test.py

+ 4
- 1
tools/test.py Wyświetl plik

@@ -139,7 +139,10 @@ def main(argv: List[str]) -> int:
)
args = parser.parse_args(argv)

opts = TestOptions(exe=Path(args.exe).absolute(), toolchain=args.toolchain)
tc = args.toolchain
if not tc.startswith(':'):
tc = Path(tc).absolute()
opts = TestOptions(exe=Path(args.exe).absolute(), toolchain=tc)

if not args.skip_bootstrap_test and not bootstrap_self(opts):
return 2

Ładowanie…
Anuluj
Zapisz