hwdb: fix screen rotation for EXO Wings 2in1 w1125 (#36283)
[systemd.io.git] / test / units / TEST-07-PID1.pr-31351.sh
blobf6911f28007a05f46eaa1033da71ddf6ac75642f
1 #!/usr/bin/env bash
2 # SPDX-License-Identifier: LGPL-2.1-or-later
3 set -eux
4 set -o pipefail
6 # shellcheck source=test/units/util.sh
7 . "$(dirname "$0")"/util.sh
9 cat >/run/systemd/system/nonexistent-execstart-exit-status.service <<EOF
10 [Service]
11 Type=oneshot
12 RemainAfterExit=yes
13 ExecStart=-/foo/bar/not-exist
14 EOF
16 systemctl start nonexistent-execstart-exit-status.service
17 systemctl is-active nonexistent-execstart-exit-status.service
18 assert_eq "$(systemctl show nonexistent-execstart-exit-status.service -P Result)" "success"
19 (( $(systemctl show nonexistent-execstart-exit-status.service -P ExecMainStatus) > 0 ))
21 systemctl stop nonexistent-execstart-exit-status.service
22 rm /run/systemd/system/nonexistent-execstart-exit-status.service