diff options
author | Daan De Meyer <daan.j.demeyer@gmail.com> | 2024-04-30 19:06:00 +0200 |
---|---|---|
committer | Daan De Meyer <daan.j.demeyer@gmail.com> | 2024-04-30 22:10:05 +0200 |
commit | 9a69900a4b0a876b85ea3c962daeed1391256f41 (patch) | |
tree | c281b959a2d99872683b8856f947602c5b3c47d5 /test/meson.build | |
parent | test: Drop /usr overlay workaround (diff) | |
download | systemd-9a69900a4b0a876b85ea3c962daeed1391256f41.tar.xz systemd-9a69900a4b0a876b85ea3c962daeed1391256f41.zip |
test: Make journal storage configurable per test and make persistent for TEST-09-JOURNAL
Also fix a bug in the logic since it's 'volatile' and not 'runtime'.
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 235c68ae29..289f564e1e 100644 --- a/test/meson.build +++ b/test/meson.build @@ -375,6 +375,7 @@ foreach test_number, dirname : integration_tests test_params = { 'mkosi_args' : [], 'timeout' : 600, + 'storage': 'volatile', } # TODO: This fs.exists call isn't included in rebuild logic @@ -389,6 +390,7 @@ foreach test_number, dirname : integration_tests '--meson-build-dir', meson.project_build_root(), '--test-name', dirname, '--test-number', test_number, + '--storage', test_params['storage'], '--', ] + test_params['mkosi_args'] |