mirror of
https://github.com/morgan9e/systemd
synced 2026-04-14 00:14:32 +09:00
We passes log level through kernel command line. It is not necessary to set to debug level at the beginning, and set to info at the end. This is important when a test has several subtests. If a subtest sets log level to info at the end, then subsequent tests may not generate any useful logs.
21 lines
463 B
Bash
Executable File
21 lines
463 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
set -eux
|
|
set -o pipefail
|
|
|
|
RESULTS_FILE=/tmp/TEST-66-DEVICE-ISOLATION.serviceresults
|
|
|
|
systemctl start TEST-66-DEVICE-ISOLATION-device-isolation.service
|
|
|
|
sleep 5
|
|
grep -q "Operation not permitted" "$RESULTS_FILE"
|
|
|
|
systemctl daemon-reload
|
|
systemctl daemon-reexec
|
|
|
|
systemctl stop TEST-66-DEVICE-ISOLATION-device-isolation.service
|
|
|
|
grep -q "thisshouldnotbehere" "$RESULTS_FILE" && exit 42
|
|
|
|
touch /testok
|