mirror of
https://github.com/systemd/systemd.git
synced 2025-03-21 02:50:18 +03:00
test: skip TEST-69-SHUTDOWN on Debian
There is a regression in the login package, skip the test until it is fixed. https://bugs.debian.org/1075733 (cherry picked from commit 92d9d5ca70b0a8b3aea12f24e9cd0f770c31a94c)
This commit is contained in:
parent
69c51768ef
commit
771bb489bf
@ -9,6 +9,13 @@ import pexpect
|
||||
|
||||
|
||||
def main():
|
||||
# TODO: drop once https://bugs.debian.org/1075733 is fixed
|
||||
with open("/usr/lib/os-release") as f:
|
||||
for line in f:
|
||||
if line.startswith("ID="):
|
||||
if "debian" in line:
|
||||
sys.exit(77)
|
||||
|
||||
logger = logging.getLogger("test-shutdown")
|
||||
|
||||
consoles = []
|
||||
|
Loading…
x
Reference in New Issue
Block a user