1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00
samba-mirror/source3/script/tests/test_success.sh
Andrew Bartlett 2839391c7d s3-selftest unconditionaly include subunit.sh
we no longer . this file into other shell scripts, so we don't need
this check any more.

Andrew Bartlett
2011-03-29 00:00:23 +02:00

23 lines
302 B
Bash
Executable File

#!/bin/sh
#
# Blackbox test that should simply succeed.
#
# Copyright (C) 2011 Michael Adam <obnox@samba.org>
incdir=`dirname $0`/../../../testprogs/blackbox
. $incdir/subunit.sh
failed=0
test_success()
{
true
}
testit "success" \
test_success || \
failed=`expr $failed + 1`
testok $0 $failed