mirror of
https://github.com/systemd/systemd.git
synced 2024-11-23 18:23:32 +08:00
31c797e03d
Configuring extra cmdline arguments as a list is much nicer than having to pass the --kernel-command-line-extra argument manually.
17 lines
465 B
Meson
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
|
|
''',
|
|
],
|
|
},
|
|
]
|