intel/compiler tests: fix path-to-string conversion

cc: mesa-stable

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/34756>
This commit is contained in:
Eric Engestrom 2025-04-29 17:48:51 +02:00 committed by Marge Bot
parent de6ab1beda
commit 729922cdae
2 changed files with 2 additions and 2 deletions

View file

@ -46,7 +46,7 @@ for asm_file in args.gen_folder.glob('*.asm'):
command = elk_asm + [
'--type', 'hex',
'--gen', args.gen_name,
asm_file
asm_file.as_posix()
]
stdout = subprocess.check_output(command, timeout=1).decode()
lines_after = stdout.splitlines(keepends=True)

View file

@ -46,7 +46,7 @@ for asm_file in args.gen_folder.glob('*.asm'):
command = brw_asm + [
'--type', 'hex',
'--gen', args.gen_name,
asm_file
asm_file.as_posix()
]
stdout = subprocess.check_output(command, timeout=1).decode()
lines_after = stdout.splitlines(keepends=True)