1
0
mirror of https://github.com/systemd/systemd synced 2024-07-08 20:15:55 +00:00
systemd/test/TEST-02-UNITTESTS/meson.build
Daan De Meyer 31c797e03d test: Add cmdline field to configure extra kernel command line args
Configuring extra cmdline arguments as a list is much nicer than
having to pass the --kernel-command-line-extra argument manually.
2024-05-14 12:43:28 +02:00

17 lines
465 B
Meson

# SPDX-License-Identifier: LGPL-2.1-or-later
integration_tests += [
integration_test_template + {
'name' : fs.name(meson.current_source_dir()),
'cmdline' : integration_test_template['cmdline'] + [
'''
systemd.setenv=TEST_CMDLINE_NEWLINE=foo
''',
'''
systemd.setenv=TEST_CMDLINE_NEWLINE=bar
''',
],
},
]