mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 13:58:04 +02:00
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:
parent
aea08bbb1f
commit
f36dcedc36
3 changed files with 3 additions and 3 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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