mirror of
https://github.com/systemd/systemd.git
synced 2024-12-19 15:13:36 +08:00
test: add test for https://github.com/systemd/systemd/issues/14560
This commit is contained in:
parent
3b7f79dc9f
commit
e56a8790a0
@ -756,6 +756,7 @@ static void test_exec_specifier(Manager *m) {
|
||||
static void test_exec_standardinput(Manager *m) {
|
||||
test(__func__, m, "exec-standardinput-data.service", 0, CLD_EXITED);
|
||||
test(__func__, m, "exec-standardinput-file.service", 0, CLD_EXITED);
|
||||
test(__func__, m, "exec-standardinput-file-cat.service", 0, CLD_EXITED);
|
||||
}
|
||||
|
||||
static void test_exec_standardoutput(Manager *m) {
|
||||
@ -786,6 +787,7 @@ static int run_tests(UnitFileScope scope, const test_entry tests[], char **patte
|
||||
assert_se(tests);
|
||||
|
||||
r = manager_new(scope, MANAGER_TEST_RUN_BASIC, &m);
|
||||
m->default_std_output = EXEC_OUTPUT_NULL; /* don't rely on host journald */
|
||||
if (manager_errno_skip_test(r))
|
||||
return log_tests_skipped_errno(r, "manager_new");
|
||||
assert_se(r >= 0);
|
||||
|
@ -138,6 +138,7 @@ test_data_files = '''
|
||||
test-execute/exec-specifier@.service
|
||||
test-execute/exec-standardinput-data.service
|
||||
test-execute/exec-standardinput-file.service
|
||||
test-execute/exec-standardinput-file-cat.service
|
||||
test-execute/exec-standardoutput-file.service
|
||||
test-execute/exec-standardoutput-append.service
|
||||
test-execute/exec-supplementarygroups-multiple-groups-default-group-user.service
|
||||
|
9
test/test-execute/exec-standardinput-file-cat.service
Normal file
9
test/test-execute/exec-standardinput-file-cat.service
Normal file
@ -0,0 +1,9 @@
|
||||
[Unit]
|
||||
Description=Test for StandardInput=file:
|
||||
|
||||
[Service]
|
||||
ExecStart=cat
|
||||
Type=oneshot
|
||||
StandardInput=file:/etc/os-release
|
||||
# We leave StandardOutput= unset here, to verify https://github.com/systemd/systemd/issues/14560 works
|
||||
# The "cat" tool is going to write to stdout, which fails if we dup() stdin to stdout
|
Loading…
Reference in New Issue
Block a user