mirror of
https://github.com/systemd/systemd.git
synced 2024-12-02 23:03:50 +08:00
cb153b4fe9
So we can extend it with additional utility functions without making it confusing. No functional change.
15 lines
301 B
Bash
Executable File
15 lines
301 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
set -eux
|
|
set -o pipefail
|
|
|
|
# shellcheck source=test/units/util.sh
|
|
. "$(dirname "$0")"/util.sh
|
|
|
|
export SYSTEMD_LOG_LEVEL=debug
|
|
|
|
assert_eq "$LISTEN_FDS" "1"
|
|
assert_eq "$LISTEN_FDNAMES" "socket"
|
|
read -r -u 3 text
|
|
assert_eq "$text" "Socket"
|