summaryrefslogtreecommitdiff
path: root/ctdb
diff options
context:
space:
mode:
authorMartin Schwenke <martin@meltin.net>2013-11-21 16:38:43 +1100
committerMichael Adam <obnox@samba.org>2013-11-27 20:39:00 +0100
commitbfbf62b6c91b368b1234f447352a89cd3961d81f (patch)
treeea1fbde7ce9eb656359e1e5ade5e09bfb0cdaeee /ctdb
parenteea87806acea74ddcd7265f5cf6f280e5dbe5354 (diff)
downloadsamba-bfbf62b6c91b368b1234f447352a89cd3961d81f.tar.gz
ctdb:tests/simple: Nobody looks at /tmp/recloop.out so use /dev/null instead
Otherwise this should use mktemp, something should look at the output and the file should be removed. :-) Signed-off-by: Martin Schwenke <martin@meltin.net> Reviewed-by: Michael Adam <obnox@samba.org> Autobuild-User(master): Michael Adam <obnox@samba.org> Autobuild-Date(master): Wed Nov 27 20:39:00 CET 2013 on sn-devel-104
Diffstat (limited to 'ctdb')
-rwxr-xr-xctdb/tests/simple/54_ctdb_transaction_recovery.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/ctdb/tests/simple/54_ctdb_transaction_recovery.sh b/ctdb/tests/simple/54_ctdb_transaction_recovery.sh
index 5bb56ecd330..acd92244c58 100755
--- a/ctdb/tests/simple/54_ctdb_transaction_recovery.sh
+++ b/ctdb/tests/simple/54_ctdb_transaction_recovery.sh
@@ -36,7 +36,7 @@ recovery_loop()
recovery_loop_start()
{
- recovery_loop > /tmp/recloop.out &
+ recovery_loop >/dev/null &
RECLOOP_PID=$!
ctdb_test_exit_hook_add "kill $RECLOOP_PID >/dev/null 2>&1"
}