Skip to content

Commit

Permalink
save dmesg -T on the tear_down of blockstore loadtest
Browse files Browse the repository at this point in the history
  • Loading branch information
debnatkh committed Jan 31, 2024
1 parent d8314c5 commit 846499b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cloud/blockstore/tests/python/lib/loadtest_env.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ def tear_down(self):

# It may be beneficial to save dmesg output for debugging purposes.
try:
with open("dmesg.txt", "w") as dmesg_output:
with open(yatest_common.output_path() + "/dmesg.txt", "w") as dmesg_output:
subprocess.run(
["sudo", "dmesg", "-T"],
stdout=dmesg_output,
Expand Down

0 comments on commit 846499b

Please sign in to comment.