[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v7 6/8] Acceptance tests: add the build directory to the system P
From: |
Cleber Rosa |
Subject: |
[PATCH v7 6/8] Acceptance tests: add the build directory to the system PATH |
Date: |
Mon, 4 Nov 2019 10:13:21 -0500 |
So that when binaries such as qemu-img are searched for, those in the
build tree will be favored. As a clarification, SRC_ROOT_DIR is
dependent on the location from where tests are executed, so they are
equal to the build directory if one is being used.
The original motivation is that Avocado libraries such as
avocado.utils.vmimage.get() may use the matching binaries, but it may
also apply to any other binary that test code may eventually attempt
to execute.
Signed-off-by: Cleber Rosa <address@hidden>
---
tests/acceptance/avocado_qemu/__init__.py | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/tests/acceptance/avocado_qemu/__init__.py
b/tests/acceptance/avocado_qemu/__init__.py
index 17ce583c87..a4bb796a47 100644
--- a/tests/acceptance/avocado_qemu/__init__.py
+++ b/tests/acceptance/avocado_qemu/__init__.py
@@ -110,6 +110,12 @@ class Test(avocado.Test):
return None
def setUp(self):
+ # Some utility code uses binaries from the system's PATH. For
+ # instance, avocado.utils.vmimage.get() uses qemu-img, to
+ # create a snapshot image. This is a transparent way of
+ # making sure those utilities find and use binaries on the
+ # build tree by default.
+ os.environ['PATH'] = '%s:%s' % (SRC_ROOT_DIR, os.environ['PATH'])
self._vms = {}
self.arch = self.params.get('arch',
--
2.21.0
- [PATCH v7 3/8] Acceptance tests: use avocado tags for machine type, (continued)
[PATCH v7 5/8] Acceptance tests: keep a stable reference to the QEMU build dir, Cleber Rosa, 2019/11/04
[PATCH v7 6/8] Acceptance tests: add the build directory to the system PATH,
Cleber Rosa <=
Re: [PATCH v7 6/8] Acceptance tests: add the build directory to the system PATH, Philippe Mathieu-Daudé, 2019/11/08
[PATCH v7 7/8] Acceptance tests: depend on qemu-img, Cleber Rosa, 2019/11/04
[PATCH v7 8/8] Acceptance test: add "boot_linux" tests, Cleber Rosa, 2019/11/04