7a382c9ed0
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
11 lines
169 B
Bash
Executable File
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
|