diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/data/test1001 | 3 | ||||
-rwxr-xr-x | tests/libtest/delay.pl | 16 |
2 files changed, 19 insertions, 0 deletions
diff --git a/tests/data/test1001 b/tests/data/test1001 index 9f8e53432..58832cbdf 100644 --- a/tests/data/test1001 +++ b/tests/data/test1001 @@ -71,6 +71,9 @@ http://%HOSTIP:%HTTPPORT/1001 -u auser:apasswd --digest -T log/1001 -x http://% <file name="log/1001"> test </file> +<postcheck> +%SRCDIR/libtest/delay.pl 1 +</postcheck> </client> # Verify data after the test has been "shot" diff --git a/tests/libtest/delay.pl b/tests/libtest/delay.pl new file mode 100755 index 000000000..219b86812 --- /dev/null +++ b/tests/libtest/delay.pl @@ -0,0 +1,16 @@ +#!/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; +} + |