summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrancois-Xavier Le Bail <devel.fx.lebail@orange.fr>2020-09-06 21:35:49 +0200
committerFrancois-Xavier Le Bail <devel.fx.lebail@orange.fr>2020-09-06 21:36:33 +0200
commit09e8265641f999ba215eb310fc8381206ff84db4 (patch)
tree7012c73a8669ba0e8064e15a18f0cf81bcde85a7
parentabc8c2d61c65757011d9d32abb01cd1e51232f3a (diff)
downloadtcpdump-09e8265641f999ba215eb310fc8381206ff84db4.tar.gz
Remove now unused 'tests/TESTonce'
Update a comment.
-rw-r--r--tests/TESTLIST2
-rwxr-xr-xtests/TESTonce19
2 files changed, 1 insertions, 20 deletions
diff --git a/tests/TESTLIST b/tests/TESTLIST
index d8cb354d..ecc326a0 100644
--- a/tests/TESTLIST
+++ b/tests/TESTLIST
@@ -1,5 +1,5 @@
# The options -# and -n are useless in TESTLIST. They are already set
-# in TESTonce.
+# in TESTrun.
# Various flags applied to a TCP session.
#
diff --git a/tests/TESTonce b/tests/TESTonce
deleted file mode 100755
index 9d0eb288..00000000
--- a/tests/TESTonce
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/usr/bin/env perl
-
-$TCPDUMP = "../tcpdump" if (!($TCPDUMP = $ENV{TCPDUMP_BIN}));
-
-use File::Basename;
-use POSIX qw( WEXITSTATUS WIFEXITED);
-use lib '.';
-use testfuncs;
-
-system("mkdir -p tests/NEW tests/DIFF");
-
-if(@ARGV != 4) {
- print "Usage: TESTonce name input output options\n";
- exit 20;
-}
-
-$r = runtest($ARGV[0], $ARGV[1], $ARGV[2], $ARGV[3]);
-exit $r >> 8;
-