aboutsummaryrefslogtreecommitdiff
path: root/tests/libtest/delay.pl
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2008-04-25 11:01:26 +0000
committerYang Tse <yangsita@gmail.com>2008-04-25 11:01:26 +0000
commitb8193b63216316c58501474e5ebd3ee14ac9349b (patch)
tree9a10bac9c72d4e040a2afc144e079012a11a6d06 /tests/libtest/delay.pl
parent113d0937dee864e3fcb0e1ca6b96ce7aa8e28e9e (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/libtest/delay.pl')
-rwxr-xr-xtests/libtest/delay.pl16
1 files changed, 0 insertions, 16 deletions
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;
-}
-