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

cc: mesa-stable

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/34756>
(cherry picked from commit 729922cdae)
This commit is contained in:
Eric Engestrom 2025-04-29 17:48:51 +02:00 committed by Eric Engestrom
parent aea08bbb1f
commit f36dcedc36
3 changed files with 3 additions and 3 deletions

View file

@ -5924,7 +5924,7 @@
"description": "intel/compiler tests: fix path-to-string conversion",
"nominated": true,
"nomination_type": 1,
"resolution": 0,
"resolution": 1,
"main_sha": null,
"because_sha": null,
"notes": null

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)