diff options
author | Daan De Meyer <daan.j.demeyer@gmail.com> | 2024-05-05 18:14:44 +0200 |
---|---|---|
committer | Daan De Meyer <daan.j.demeyer@gmail.com> | 2024-05-06 11:57:09 +0200 |
commit | 1f2c9bda495e062c34b891ca8e77ce0ec43a5012 (patch) | |
tree | e7eebc268dc016ed595a3002812df5d88621ee25 /test/meson.build | |
parent | TEST-46-HOMED: Skip barely fits test on ext4 (diff) | |
download | systemd-1f2c9bda495e062c34b891ca8e77ce0ec43a5012.tar.xz systemd-1f2c9bda495e062c34b891ca8e77ce0ec43a5012.zip |
test: Default to linux qemu firmware
Direct kernel boot results in much faster boot times so let's use
it by default.
We disable it for tests that need to reboot because +-50% of the
time, doing a reboot when using direct kernel boot causes qemu to
hang on reboot. Until we figure that out, let's use UEFI for the
tests that need to reboot.
Diffstat (limited to 'test/meson.build')
-rw-r--r-- | test/meson.build | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/meson.build b/test/meson.build index 43314f8c79..f5c48cedba 100644 --- a/test/meson.build +++ b/test/meson.build @@ -415,6 +415,7 @@ foreach test_number, dirname : integration_tests 'timeout' : 1800, 'storage' : 'volatile', 'priority' : 0, + 'firmware' : 'linux', } # TODO: This fs.exists call isn't included in rebuild logic @@ -430,6 +431,7 @@ foreach test_number, dirname : integration_tests '--test-name', dirname, '--test-number', test_number, '--storage', test_params['storage'], + '--firmware', test_params['firmware'], '--', ] + test_params['mkosi_args'] |