aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/libtest/Makefile.am2
-rwxr-xr-xtests/libtest/delay.pl16
2 files changed, 1 insertions, 17 deletions
diff --git a/tests/libtest/Makefile.am b/tests/libtest/Makefile.am
index fe40e53f9..47864eb30 100644
--- a/tests/libtest/Makefile.am
+++ b/tests/libtest/Makefile.am
@@ -35,7 +35,7 @@ INCLUDES = -I$(top_srcdir)/include/curl \
LIBDIR = $(top_builddir)/lib
-EXTRA_DIST = test75.pl test307.pl test610.pl test613.pl test1013.pl test1022.pl delay.pl
+EXTRA_DIST = test75.pl test307.pl test610.pl test613.pl test1013.pl test1022.pl
# files used only in some libcurl test programs
TESTUTIL = testutil.c testutil.h
diff --git a/tests/libtest/delay.pl b/tests/libtest/delay.pl
deleted file mode 100755
index 219b86812..000000000
--- a/tests/libtest/delay.pl
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/usr/bin/env perl
-# sleep for a number of seconds
-if ( $#ARGV != 0 )
-{
- print "Usage: $0 seconds\n";
- exit 1;
-}
-if ( $ARGV[0] =~ /(\d+)/ ) {
- sleep $1;
- exit 0;
-}
-else {
- print "Usage: $0 seconds\n";
- exit 1;
-}
-