1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-01-03 05:18:29 +03:00

lvmdbustest: Don't use hard coded /tmp for error inject log

This commit is contained in:
Tony Asleson 2023-03-10 10:41:20 -06:00
parent 66e79aab36
commit 568e8c71d7

View File

@ -42,7 +42,7 @@ def rs(length, character_set=CS):
RS = rs(512) RS = rs(512)
d_out = open("/tmp/mitm_lvm.txt", "a") d_out = open(os.path.join(tempfile.gettempdir(), "mitm_lvm.txt"), "a")
def debug(msg): def debug(msg):