1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-23 19:25:25 +03:00
aports/testing/py3-notify2/test-wrapper.sh
2020-08-29 18:45:41 -03:00

16 lines
283 B
Bash

#!/bin/sh
# Copyright 2020 Antoine Fontaine
# SPDX-License-Identifier: GPL-3.0-or-later
# tiny wrapper that starts a notification dæmon (dunst)
# for the testsuite to talk to
dunst >/dev/null 2>&1 &
dunst_pid=$!
python3 test_notify2.py
success=$?
kill $dunst_pid
exit $success