Explorar el Código

Fix tests: Pass toolchain file through as absolute path

default_compile_flags
vector-of-bool hace 5 años
padre
commit
ccf8e021b0
Se han modificado 1 ficheros con 4 adiciones y 1 borrados
  1. +4
    -1
      tools/test.py

+ 4
- 1
tools/test.py Ver fichero

@@ -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

Cargando…
Cancelar
Guardar