alsa-lib/tests/run_tests.sh
Petr Šabata 7a382c9ed0 RHEL 9.0.0 Alpha bootstrap
The content of this branch was automatically imported from Fedora ELN
with the following as its source:
https://src.fedoraproject.org/rpms/alsa-lib#d1acbfe5cbd0b61371d377f2bb319155a4e538c0
2020-10-14 21:35:32 +02:00

11 lines
169 B
Bash
Executable File

#!/bin/bash
set -ex
# a quick PCM API test
str=$(aplay -L | grep -E "^null$")
if [ "$str" != "null" ]; then
echo "The 'null' pcm plugin was not found!"
exit 99
fi