alsa-lib/tests/run_tests.sh
2020-03-03 10:15:03 +01: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