c1aa90ec4e
The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/alsa-plugins#5ae51c83bb280041a39b3233a6ba7c6ae99fcb52
13 lines
218 B
Bash
Executable File
13 lines
218 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
# create patest user
|
|
adduser patest
|
|
|
|
# run pulseaudio daemon
|
|
su - patest -c "pulseaudio --start --log-target=stderr"
|
|
|
|
# run pulseaudio test (null sink)
|
|
su - patest -c "speaker-test -D pulse -l 1"
|