aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/config.sh2
-rw-r--r--test/suite-capture.sh2
-rw-r--r--test/suite-io.sh2
-rw-r--r--test/test.sh2
4 files changed, 4 insertions, 4 deletions
diff --git a/test/config.sh b/test/config.sh
index 7a6dfa2896..62f180109b 100644
--- a/test/config.sh
+++ b/test/config.sh
@@ -27,7 +27,7 @@
ETH_BIN_PATH=../Debug_GTK2
# Tweak the following to your liking.
-ETHEREAL=$ETH_BIN_PATH/ethereal
+WIRESHARK=$ETH_BIN_PATH/ethereal
TSHARK=$ETH_BIN_PATH/tshark
CAPINFOS=$ETH_BIN_PATH/capinfos
DUMPCAP=$ETH_BIN_PATH/dumpcap
diff --git a/test/suite-capture.sh b/test/suite-capture.sh
index 4315737ba2..1a107bdc79 100644
--- a/test/suite-capture.sh
+++ b/test/suite-capture.sh
@@ -187,7 +187,7 @@ capture_step_snapshot() {
ethereal_capture_suite() {
# Q: quit after cap, k: start capture immediately
- DUT="$ETHEREAL -Q -k"
+ DUT="$WIRESHARK -Q -k"
test_step_add "Capture 10 packets" capture_step_10packets
# piping to stdout doesn't work with Ethereal and capturing!
#test_step_add "Capture 10 packets using stdout: -w -" capture_step_10packets_stdout
diff --git a/test/suite-io.sh b/test/suite-io.sh
index ebcfdedfd7..51eb98f823 100644
--- a/test/suite-io.sh
+++ b/test/suite-io.sh
@@ -127,7 +127,7 @@ io_step_input_piping() {
ethereal_io_suite() {
# Q: quit after cap, k: start capture immediately
- DUT="$ETHEREAL"
+ DUT="$WIRESHARK"
test_step_add "Input file" io_step_input_file
}
diff --git a/test/test.sh b/test/test.sh
index d60408e46b..01278fbef0 100644
--- a/test/test.sh
+++ b/test/test.sh
@@ -39,7 +39,7 @@ source suite-capture.sh
test_step_prerequisites() {
NOTFOUND=0
- for i in "$ETHEREAL" "$TSHARK" "$CAPINFOS" "$DUMPCAP" ; do
+ for i in "$WIRESHARK" "$TSHARK" "$CAPINFOS" "$DUMPCAP" ; do
if [ ! -x $i ]; then
echo "Couldn't find $i"
NOTFOUND=1