mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
c8756ec17b
BUG: https://bugzilla.samba.org/show_bug.cgi?id=13520 Signed-off-by: Amitay Isaacs <amitay@gmail.com> Reviewed-by: Martin Schwenke <martin@meltin.net>
44 lines
928 B
Bash
Executable File
44 lines
928 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. "${TEST_SCRIPTS_DIR}/unit.sh"
|
|
|
|
define_test "timeouts with multiple scripts"
|
|
|
|
setup_eventd
|
|
|
|
required_error ETIMEDOUT <<EOF
|
|
Event timeout1 in multi timed out
|
|
EOF
|
|
simple_test run 5 multi timeout1
|
|
|
|
required_error ETIMEDOUT <<EOF
|
|
01.test TIMEDOUT DATETIME
|
|
OUTPUT:
|
|
EOF
|
|
simple_test status multi timeout1
|
|
|
|
required_error ETIMEDOUT <<EOF
|
|
Event timeout2 in multi timed out
|
|
EOF
|
|
simple_test run 5 multi timeout2
|
|
|
|
required_error ETIMEDOUT <<EOF
|
|
01.test OK DURATION DATETIME
|
|
02.test TIMEDOUT DATETIME
|
|
OUTPUT:
|
|
EOF
|
|
simple_test status multi timeout2
|
|
|
|
required_error ETIMEDOUT <<EOF
|
|
Event timeout3 in multi timed out
|
|
EOF
|
|
simple_test run 5 multi timeout3
|
|
|
|
required_error ETIMEDOUT <<EOF
|
|
01.test OK DURATION DATETIME
|
|
02.test OK DURATION DATETIME
|
|
03.test TIMEDOUT DATETIME
|
|
OUTPUT:
|
|
EOF
|
|
simple_test status multi timeout3
|