mirror of
https://github.com/samba-team/samba.git
synced 2024-12-22 13:34:15 +03:00
df29b9ab16
shfmt -f source4/selftest/ | xargs shfmt -w -p -i 0 -fn Signed-off-by: Andreas Schneider <asn@samba.org> Reviewed-by: Pavel Filipenský <pfilipensky@samba.org>
15 lines
296 B
Bash
Executable File
15 lines
296 B
Bash
Executable File
#!/bin/sh
|
|
# Verify that samba3dump completes.
|
|
|
|
. testprogs/blackbox/subunit.sh
|
|
|
|
subunit_start_test samba3dump
|
|
|
|
SRCDIR=$(dirname $0)/../..
|
|
|
|
if $PYTHON $SRCDIR/source4/scripting/bin/samba3dump $SRCDIR/testdata/samba3; then
|
|
subunit_pass_test samba3dump
|
|
else
|
|
echo | subunit_fail_test samba3dump
|
|
fi
|