]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
test: Formatting fixes
authorDaan De Meyer <daan.j.demeyer@gmail.com>
Thu, 2 May 2024 06:52:50 +0000 (08:52 +0200)
committerDaan De Meyer <daan.j.demeyer@gmail.com>
Mon, 6 May 2024 08:56:43 +0000 (10:56 +0200)
test/TEST-09-REBOOT/meson.build
test/integration-test-wrapper.py
test/meson.build

index 30a5a10707bb31b55b6168108c29a64510fcdcb5..7f5cc704c9da8bbc73326a321ae9c8f920b91624 100644 (file)
@@ -1,5 +1,5 @@
 # SPDX-License-Identifier: LGPL-2.1-or-later
 
-test_params = test_params + {
+test_params += {
         'storage': 'persistent',
 }
index af8be8926404debbdf281fd081fd4d6bfd62f4e1..f3b1172a5d52792a844b33580ab91a55047c3fc0 100755 (executable)
@@ -119,7 +119,7 @@ def main():
                 else []
             ),
         ]),
-        '--credential', f"journal.storage={'persistent' if sys.stderr.isatty() else args.storage}" ,
+        '--credential', f"journal.storage={'persistent' if sys.stderr.isatty() else args.storage}",
         *args.mkosi_args,
         'qemu',
     ]
index 161f24dc0bc0d7d4225acba0e7bf767466fa46ae..c4f4057e5949cb43d02e690d4c071283b2a1c9aa 100644 (file)
@@ -412,7 +412,7 @@ foreach test_number, dirname : integration_tests
         test_params = {
                 'mkosi_args' : [],
                 'timeout' : 1800,
-                'storage': 'volatile',
+                'storage' : 'volatile',
         }
 
         # TODO: This fs.exists call isn't included in rebuild logic
@@ -435,9 +435,9 @@ foreach test_number, dirname : integration_tests
         # on every "ninja -C build". Instead, the mkosi target has to be rebuilt manually before
         # running the integration tests with mkosi.
         test(dirname,
-                integration_test_wrapper,
-                env: test_env,
-                args : args,
-                timeout : test_params['timeout'],
-                suite : 'integration-tests')
+             integration_test_wrapper,
+             env : test_env,
+             args : args,
+             timeout : test_params['timeout'],
+             suite : 'integration-tests')
 endforeach