mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-03 18:00:10 +01:00
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:
parent
de6ab1beda
commit
729922cdae
2 changed files with 2 additions and 2 deletions
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue