diff options
author | Cleber Rosa | 2021-02-03 18:23:39 +0100 |
---|---|---|
committer | Philippe Mathieu-Daudé | 2021-02-08 17:22:36 +0100 |
commit | fef453ee185958bf42644e3eb107e99184e0cbfc (patch) | |
tree | 3802fdddbd613518a00ba8da5b6766cb5a1d11e2 /tests/acceptance | |
parent | tests/acceptance/boot_linux: rename misleading cloudinit method (diff) | |
download | qemu-fef453ee185958bf42644e3eb107e99184e0cbfc.tar.gz qemu-fef453ee185958bf42644e3eb107e99184e0cbfc.tar.xz qemu-fef453ee185958bf42644e3eb107e99184e0cbfc.zip |
tests/acceptance/virtiofs_submounts: use workdir property
For Avocado Instrumented based tests, it's a better idea to just use
the property. The environment variable is a fall back for tests not
written using that Python API.
Signed-off-by: Cleber Rosa <crosa@redhat.com>
Reviewed-by: Beraldo Leal <bleal@redhat.com>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Reference: https://avocado-framework.readthedocs.io/en/84.0/api/test/avocado.html#avocado.Test.workdir
Message-Id: <20210203172357.1422425-5-crosa@redhat.com>
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Diffstat (limited to 'tests/acceptance')
-rw-r--r-- | tests/acceptance/virtiofs_submounts.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/acceptance/virtiofs_submounts.py b/tests/acceptance/virtiofs_submounts.py index 361e5990b6..68d3cd6869 100644 --- a/tests/acceptance/virtiofs_submounts.py +++ b/tests/acceptance/virtiofs_submounts.py @@ -136,8 +136,7 @@ class VirtiofsSubmountsTest(BootLinux): return (stdout, stderr, ret) def set_up_shared_dir(self): - atwd = os.getenv('AVOCADO_TEST_WORKDIR') - self.shared_dir = os.path.join(atwd, 'virtiofs-shared') + self.shared_dir = os.path.join(self.workdir, 'virtiofs-shared') os.mkdir(self.shared_dir) @@ -234,8 +233,7 @@ class VirtiofsSubmountsTest(BootLinux): self.seed = self.params.get('seed') - atwd = os.getenv('AVOCADO_TEST_WORKDIR') - self.ssh_key = os.path.join(atwd, 'id_ed25519') + self.ssh_key = os.path.join(self.workdir, 'id_ed25519') self.run(('ssh-keygen', '-t', 'ed25519', '-f', self.ssh_key)) |