Skip to content

Commit eaa6639

Browse files
david-hazi-armaggarg
authored andcommitted
tests: Add FVP version logging
Printing out the FVP version facilitates troubleshooting and helps verify the results of FVP updates. Signed-off-by: Dávid Házi <[email protected]>
1 parent 0048e5f commit eaa6639

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed
+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
tests: Add FVP version logging

tools/tests/conftest.py

+8
Original file line numberDiff line numberDiff line change
@@ -230,6 +230,14 @@ def fvp_process(
230230
cmdline.extend(frm_options)
231231
if pythonhome_path != "":
232232
fvp_env["PYTHONHOME"] = pythonhome_path
233+
234+
# Log FVP version
235+
command = [fvp_path, "--version"]
236+
fvp_version_proc = subprocess.run(
237+
command, env=fvp_env, capture_output=True, text=True
238+
)
239+
print(fvp_version_proc.stdout)
240+
233241
proc = subprocess.Popen(cmdline, stdout=subprocess.PIPE, env=fvp_env)
234242
yield proc
235243
proc.terminate()

0 commit comments

Comments
 (0)