diff options
author | Thomas Huth <thuth@redhat.com> | 2025-03-11 17:08:47 +0100 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2025-03-12 18:17:38 +0100 |
commit | 15ef93dd48c2635d0e9f9e9a4f6dd92a40e23bff (patch) | |
tree | 44dc058486006d03593c8bf3e1d5ed23c9945256 /docs/system/arm | |
parent | 8c63f9aa3f885f06edac3d1e4f21bde939f8c517 (diff) | |
download | qemu-15ef93dd48c2635d0e9f9e9a4f6dd92a40e23bff.zip qemu-15ef93dd48c2635d0e9f9e9a4f6dd92a40e23bff.tar.gz qemu-15ef93dd48c2635d0e9f9e9a4f6dd92a40e23bff.tar.bz2 |
docs/system: Fix the information on how to run certain functional tests
The tests have been converted to the functional framework, so
we should not talk about Avocado here anymore.
Fixes: f7d6b772200 ("tests/functional: Convert BananaPi tests to the functional framework")
Fixes: 380f7268b7b ("tests/functional: Convert the OrangePi tests to the functional framework")
Fixes: 4c0a2df81c9 ("tests/functional: Convert some tests that download files via fetch_asset()")
Message-ID: <20250311160847.388670-1-thuth@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'docs/system/arm')
-rw-r--r-- | docs/system/arm/bananapi_m2u.rst | 5 | ||||
-rw-r--r-- | docs/system/arm/orangepi.rst | 6 |
2 files changed, 5 insertions, 6 deletions
diff --git a/docs/system/arm/bananapi_m2u.rst b/docs/system/arm/bananapi_m2u.rst index 587b488..d30db8d 100644 --- a/docs/system/arm/bananapi_m2u.rst +++ b/docs/system/arm/bananapi_m2u.rst @@ -135,6 +135,5 @@ provide the following command: .. code-block:: bash $ cd qemu-build-dir - $ AVOCADO_ALLOW_LARGE_STORAGE=yes tests/venv/bin/avocado \ - --verbose --show=app,console run -t machine:bpim2u \ - ../tests/avocado/boot_linux_console.py + $ QEMU_TEST_ALLOW_LARGE_STORAGE=1 \ + meson test --suite thorough func-arm-arm_bpim2u diff --git a/docs/system/arm/orangepi.rst b/docs/system/arm/orangepi.rst index db87e81..8b9448c 100644 --- a/docs/system/arm/orangepi.rst +++ b/docs/system/arm/orangepi.rst @@ -257,9 +257,9 @@ Orange Pi PC integration tests The Orange Pi PC machine has several integration tests included. To run the whole set of tests, build QEMU from source and simply -provide the following command: +provide the following command from the build directory: .. code-block:: bash - $ AVOCADO_ALLOW_LARGE_STORAGE=yes avocado --show=app,console run \ - -t machine:orangepi-pc tests/avocado/boot_linux_console.py + $ QEMU_TEST_ALLOW_LARGE_STORAGE=1 \ + meson test --suite thorough func-arm-arm_orangepi |