aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorLibravatar Reiner Herrmann <reiner@reiner-h.de>2021-01-30 12:44:09 +0100
committerLibravatar GitHub <noreply@github.com>2021-01-30 12:44:09 +0100
commitaf2375300c5a1697d2b5242fc11e6275788894b1 (patch)
tree4bd65b5c117f404b08b7a5cfe6ebb831bf9ca5bc /test
parentMerge pull request #3885 from kmk3/fix-ssh (diff)
downloadfirejail-af2375300c5a1697d2b5242fc11e6275788894b1.tar.gz
firejail-af2375300c5a1697d2b5242fc11e6275788894b1.tar.zst
firejail-af2375300c5a1697d2b5242fc11e6275788894b1.zip
tests: improve check for sound capabilities (#3929)
Fixes: #3928
Diffstat (limited to 'test')
-rwxr-xr-xtest/environment/environment.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/environment/environment.sh b/test/environment/environment.sh
index e88036d3d..0706cbd88 100755
--- a/test/environment/environment.sh
+++ b/test/environment/environment.sh
@@ -70,12 +70,12 @@ echo "TESTING: firejail in firejail - single sandbox (test/environment/firejail-
70./firejail-in-firejail.exp 70./firejail-in-firejail.exp
71 71
72which aplay 2>/dev/null 72which aplay 2>/dev/null
73if [ "$?" -eq 0 ]; 73if [ "$?" -eq 0 ] && [ "$(aplay -l | grep -c "List of PLAYBACK")" -gt 0 ];
74then 74then
75 echo "TESTING: sound (test/environment/sound.exp)" 75 echo "TESTING: sound (test/environment/sound.exp)"
76 ./sound.exp 76 ./sound.exp
77else 77else
78 echo "TESTING SKIP: aplay not found" 78 echo "TESTING SKIP: no aplay or sound card found"
79fi 79fi
80 80
81echo "TESTING: nice (test/environment/nice.exp)" 81echo "TESTING: nice (test/environment/nice.exp)"