diff options
author | Yang Tse <yangsita@gmail.com> | 2008-04-25 11:01:26 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2008-04-25 11:01:26 +0000 |
commit | b8193b63216316c58501474e5ebd3ee14ac9349b (patch) | |
tree | 9a10bac9c72d4e040a2afc144e079012a11a6d06 /tests | |
parent | 113d0937dee864e3fcb0e1ca6b96ce7aa8e28e9e (diff) |
tests/libtest/delay.pl no longer used. The 'delay' attribute of the
test harness <command> subsection now provides this functionality.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/libtest/Makefile.am | 2 | ||||
-rwxr-xr-x | tests/libtest/delay.pl | 16 |
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; -} - |