From: Yang Tse Date: Fri, 25 Apr 2008 11:01:26 +0000 (+0000) Subject: tests/libtest/delay.pl no longer used. The 'delay' attribute of the X-Git-Tag: upstream/7.37.1~7883 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b8193b63216316c58501474e5ebd3ee14ac9349b;p=platform%2Fupstream%2Fcurl.git tests/libtest/delay.pl no longer used. The 'delay' attribute of the test harness subsection now provides this functionality. --- diff --git a/tests/libtest/Makefile.am b/tests/libtest/Makefile.am index fe40e53..47864eb 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 219b868..0000000 --- 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; -} -