aboutsummaryrefslogtreecommitdiffstats
path: root/debian/tests
diff options
context:
space:
mode:
Diffstat (limited to 'debian/tests')
-rw-r--r--debian/tests/control5
-rw-r--r--debian/tests/frame-count.lua17
-rwxr-xr-xdebian/tests/gui9
-rwxr-xr-xdebian/tests/tshark8
4 files changed, 0 insertions, 39 deletions
diff --git a/debian/tests/control b/debian/tests/control
deleted file mode 100644
index 889d49c9fe..0000000000
--- a/debian/tests/control
+++ /dev/null
@@ -1,5 +0,0 @@
-Tests: tshark
-Depends: tshark
-
-Tests: gui
-Depends: wireshark-qt, xvfb, xauth, at-spi2-core
diff --git a/debian/tests/frame-count.lua b/debian/tests/frame-count.lua
deleted file mode 100644
index b41b4d2050..0000000000
--- a/debian/tests/frame-count.lua
+++ /dev/null
@@ -1,17 +0,0 @@
-do
- packets = 0;
- local function init_listener()
- local tap = Listener.new("frame")
- function tap.reset()
- packets = 0;
- end
- function tap.packet(pinfo,tvb, ip)
- packets = packets + 1
- end
- function tap.draw()
- print("Packet count:", packets)
- os.exit(0)
- end
- end
- init_listener()
-end
diff --git a/debian/tests/gui b/debian/tests/gui
deleted file mode 100755
index 38ad706dbb..0000000000
--- a/debian/tests/gui
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/bin/sh
-# autopkgtest check: Run wireshark GUI to see basic functionality working
-# Author: Balint Reczey <balint@balintreczey.hu>
-
-set -e
-
-xvfb-run --auto-servernum -s '-screen 0 1920x1080x24 +extension GLX' wireshark -Xlua_script:debian/tests/frame-count.lua test/captures/dhcp.pcap 2>&1
-
-echo "run: OK"
diff --git a/debian/tests/tshark b/debian/tests/tshark
deleted file mode 100755
index 020574f772..0000000000
--- a/debian/tests/tshark
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/bin/sh
-# autopkgtest check: Run tshark to see basic functionality working
-# Author: Balint Reczey <balint@balintreczey.hu>
-
-set -e
-
-tshark --version
-echo "run: OK"