mirror of
https://github.com/samba-team/samba.git
synced 2025-01-11 05:18:09 +03:00
7d04778c82
Also add tests. Update testparm stub to fake error and timeout. Add timeout stub. Signed-off-by: Martin Schwenke <martin@meltin.net> Reviewed-by: Amitay Isaacs <amitay@gmail.com>
9 lines
91 B
Bash
Executable File
9 lines
91 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ -n "$FAKE_TIMEOUT" ] ; then
|
|
exit 124
|
|
else
|
|
shift 1
|
|
exec "$@"
|
|
fi
|