diff options
author | Daniel P. Berrangé <berrange@redhat.com> | 2024-11-21 16:57:30 +0000 |
---|---|---|
committer | Alex Bennée <alex.bennee@linaro.org> | 2024-11-25 10:06:20 +0000 |
commit | b0b5bc2dc6580d87ead7ff7a5ba51c8a2358bf52 (patch) | |
tree | a519ba7c8151d20600004dccb5ebdba4aabb2dd5 /tests/functional/test_mips64el_malta.py | |
parent | dbaaef7dbfe3a932279c2d77f056a30575cc97cb (diff) | |
download | qemu-b0b5bc2dc6580d87ead7ff7a5ba51c8a2358bf52.zip qemu-b0b5bc2dc6580d87ead7ff7a5ba51c8a2358bf52.tar.gz qemu-b0b5bc2dc6580d87ead7ff7a5ba51c8a2358bf52.tar.bz2 |
tests/functional: remove "AVOCADO" from env variable name
This env variable is a debugging flag to save screendumps in the
mips64el malta tests.
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
Message-Id: <20241121154218.1423005-4-berrange@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-Id: <20241121165806.476008-4-alex.bennee@linaro.org>
Diffstat (limited to 'tests/functional/test_mips64el_malta.py')
-rwxr-xr-x | tests/functional/test_mips64el_malta.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/functional/test_mips64el_malta.py b/tests/functional/test_mips64el_malta.py index 24ebcdb..6d1195d 100755 --- a/tests/functional/test_mips64el_malta.py +++ b/tests/functional/test_mips64el_malta.py @@ -159,7 +159,7 @@ class MaltaMachineFramebuffer(LinuxKernelTest): loc = np.where(result >= match_threshold) tuxlogo_count = 0 h, w = tuxlogo_bgr.shape[:2] - debug_png = os.getenv('AVOCADO_CV2_SCREENDUMP_PNG_PATH') + debug_png = os.getenv('QEMU_TEST_CV2_SCREENDUMP_PNG_PATH') for tuxlogo_count, pt in enumerate(zip(*loc[::-1]), start=1): logger.debug('found Tux at position (x, y) = %s', pt) cv2.rectangle(screendump_bgr, pt, |