summaryrefslogtreecommitdiff
path: root/debian/tests/listplugins
blob: cfac069c74ef7c8e8e5900d950ed360234651abb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash
# make sure listplugins works.

set -e
set -o pipefail

export LADSPA_PATH=/usr/lib/ladspa

shipped_plugins="amp delay filter noise sine"

for plugin in $shipped_plugins ; do
	echo "Checking $plugin"
	listplugins | grep -q "^$LADSPA_PATH/${plugin}.so"
done