aboutsummaryrefslogtreecommitdiffstats
path: root/test/apps/apps.sh
diff options
context:
space:
mode:
Diffstat (limited to 'test/apps/apps.sh')
-rwxr-xr-xtest/apps/apps.sh5
1 files changed, 2 insertions, 3 deletions
diff --git a/test/apps/apps.sh b/test/apps/apps.sh
index ed4b7604a..0ef01bf2e 100755
--- a/test/apps/apps.sh
+++ b/test/apps/apps.sh
@@ -7,10 +7,9 @@ export MALLOC_CHECK_=3
7export MALLOC_PERTURB_=$(($RANDOM % 255 + 1)) 7export MALLOC_PERTURB_=$(($RANDOM % 255 + 1))
8export LC_ALL=C 8export LC_ALL=C
9 9
10LIST="firefox midori chromium opera transmission-qt qbittorrent uget-gtk filezilla gthumb thunderbird " 10apps=(firefox midori chromium opera transmission-qt qbittorrent uget-gtk filezilla gthumb thunderbird vlc fbreader deluge gnome-mplayer xchat wine kcalc ktorrent hexchat)
11LIST+="vlc fbreader deluge gnome-mplayer xchat wine kcalc ktorrent hexchat"
12 11
13for app in $LIST; do 12for app in "${apps[@]}"; do
14 if command -v "$app" 13 if command -v "$app"
15 then 14 then
16 echo "TESTING: $app" 15 echo "TESTING: $app"