mirror of
https://github.com/systemd/systemd.git
synced 2024-10-30 14:55:37 +03:00
15 lines
304 B
Bash
Executable File
15 lines
304 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/assert.sh
|
|
. "$(dirname "$0")"/assert.sh
|
|
|
|
export SYSTEMD_LOG_LEVEL=debug
|
|
|
|
assert_eq "$LISTEN_FDS" "1"
|
|
assert_eq "$LISTEN_FDNAMES" "new-file"
|
|
read -r -u 3 text
|
|
assert_eq "$text" "New"
|