aboutsummaryrefslogtreecommitdiffstats
path: root/test/test-apps-x11.sh
blob: 6521fa2b06aec6d127cc9ce41b8ec0d037fe3935 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/bin/bash

which firefox
if [ "$?" -eq 0 ];
then
	echo "TESTING: firefox x11"
	./firefox-x11.exp
else
	echo "TESTING: firefox not found"
fi

which chromium
if [ "$?" -eq 0 ];
then
	echo "TESTING: chromium x11"
	./chromium-x11.exp
else
	echo "TESTING: chromium not found"
fi

which transmission-gtk
if [ "$?" -eq 0 ];
then
	echo "TESTING: transmission-gtk x11"
	./transmission-gtk.exp
else
	echo "TESTING: transmission-gtk not found"
fi