repo.or.cz
/
Samba.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Transition to waf 1.8: replaced on_results by update_outputs
[Samba.git]
/
source3
/
script
/
tests
/
test_success.sh
blob
fe63fb51a9faf79e2bd13f4380c4848528adeaf8
1
#!/bin/sh
2
#
3
# Blackbox test that should simply succeed.
4
#
5
# Copyright (C) 2011 Michael Adam <obnox@samba.org>
6
7
incdir
=
`dirname
$0
`
/
..
/
..
/
..
/
testprogs
/
blackbox
8
.
$incdir
/
subunit.sh
9
10
failed
=
0
11
12
test_success
()
13
{
14
true
15
}
16
17
testit
"success"
\
18
test_success || \
19
failed
=
`expr
$failed
+ 1`
20
21
testok
$0 $failed
22