From 1d5d8cea0b87e953df9f67807bec4f6107602885 Mon Sep 17 00:00:00 2001
From: Simon McVittie <smcv@collabora.com>
Date: Mon, 22 Jun 2020 18:21:01 +0100
Subject: [PATCH] tests: Rename pressure-vessel log file in artifacts

This log file contains pressure-vessel's debug messages (which happen
outside the scout container), not just the output of inside-scout.py,
so calling it inside-scout.log is misleading.

If we're running pressure-vessel-wrap --only-prepare, then we never
actually get as far as running inside-scout.py or entering the container,
so the log file name is doubly misleading.

Signed-off-by: Simon McVittie <smcv@collabora.com>
---
 tests/containers.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/containers.py b/tests/containers.py
index 36b05c20a..6dd75ade3 100755
--- a/tests/containers.py
+++ b/tests/containers.py
@@ -435,7 +435,7 @@ class TestContainers(BaseTest):
             ) as rlock_writer, open(
                 os.path.join(temp, 'tmp-wlock', '.ref'), 'w'
             ) as wlock_writer, tee_file_and_stderr(
-                os.path.join(artifacts, 'inside-scout.log')
+                os.path.join(artifacts, 'pressure-vessel.log')
             ) as tee:
                 lockdata = struct.pack('hhlli', fcntl.F_RDLCK, 0, 0, 0, 0)
                 fcntl.fcntl(rlock_writer.fileno(), fcntl.F_SETLKW, lockdata)
-- 
GitLab