aboutsummaryrefslogtreecommitdiffstats
path: root/test/test.sh
diff options
context:
space:
mode:
authorPeter Wu <peter@lekensteyn.nl>2016-10-20 23:33:48 +0200
committerPeter Wu <peter@lekensteyn.nl>2016-10-21 20:38:46 +0000
commit7f6a4926d2f6a135960146041c29802db616aa63 (patch)
treec758bdbd80e0984b8dd5e760aa01f65754e4442a /test/test.sh
parent10a1e8d261d30ce30300c6f51863b74184e61bd5 (diff)
test: make GTK support optional
Current Ubuntu buildbot is failing because GTK support was removed. Tests should not fail if GTK is not available, so make it optional. Change-Id: I1640c8bcea5208299f6846eb366e105c39a3ebf3 Reviewed-on: https://code.wireshark.org/review/18345 Reviewed-by: Gerald Combs <gerald@wireshark.org> Reviewed-by: Peter Wu <peter@lekensteyn.nl>
Diffstat (limited to 'test/test.sh')
-rwxr-xr-xtest/test.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test.sh b/test/test.sh
index d4fcc762ff..d469eccc22 100755
--- a/test/test.sh
+++ b/test/test.sh
@@ -128,7 +128,7 @@ trap test_cleanup EXIT
test_step_prerequisites() {
NOTFOUND=0
- for i in "$WIRESHARK" "$WIRESHARK_GTK" "$TSHARK" "$CAPINFOS" "$MERGECAP" "$DUMPCAP" ; do
+ for i in "$WIRESHARK" "$TSHARK" "$CAPINFOS" "$MERGECAP" "$DUMPCAP" ; do
if [ ! -x $i ]; then
echo "Couldn't find $i"
NOTFOUND=1