aboutsummaryrefslogtreecommitdiffstats
path: root/test/test-apps-x11.sh
diff options
context:
space:
mode:
Diffstat (limited to 'test/test-apps-x11.sh')
-rwxr-xr-xtest/test-apps-x11.sh29
1 files changed, 29 insertions, 0 deletions
diff --git a/test/test-apps-x11.sh b/test/test-apps-x11.sh
new file mode 100755
index 000000000..6521fa2b0
--- /dev/null
+++ b/test/test-apps-x11.sh
@@ -0,0 +1,29 @@
1#!/bin/bash
2
3which firefox
4if [ "$?" -eq 0 ];
5then
6 echo "TESTING: firefox x11"
7 ./firefox-x11.exp
8else
9 echo "TESTING: firefox not found"
10fi
11
12which chromium
13if [ "$?" -eq 0 ];
14then
15 echo "TESTING: chromium x11"
16 ./chromium-x11.exp
17else
18 echo "TESTING: chromium not found"
19fi
20
21which transmission-gtk
22if [ "$?" -eq 0 ];
23then
24 echo "TESTING: transmission-gtk x11"
25 ./transmission-gtk.exp
26else
27 echo "TESTING: transmission-gtk not found"
28fi
29