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