blob: 3b5fb6eab2a21e5df5d644e55a132f3b0bf3020f (
plain)
1
2
3
4
5
6
7
8
9
|
# SPDX-License-Identifier: LGPL-2.1-or-later
[Unit]
Description=Test for SystemCallErrorNumber
[Service]
ExecStart=python3 -c 'import os\ntry: os.uname()\nexcept Exception as e: exit(e.errno)'
Type=oneshot
SystemCallFilter=~uname
SystemCallErrorNumber=255
|