mirror of
https://github.com/samba-team/samba.git
synced 2024-12-27 03:21:53 +03:00
a4bbc88cf1
(This used to be ctdb commit 6e6812641e3ce7afae7bd46ed317a885839fdd4f)
18 lines
542 B
Bash
Executable File
18 lines
542 B
Bash
Executable File
#!/bin/sh
|
|
|
|
killall -q ctdb_test
|
|
|
|
|
|
echo "Trying 2 nodes ..."
|
|
$VALGRIND bin/ctdb_test --nlist tests/nodes.txt --listen 127.0.0.1:9001 &
|
|
$VALGRIND bin/ctdb_test --nlist tests/nodes.txt --listen 127.0.0.2:9001
|
|
wait
|
|
|
|
echo "Trying 4 nodes ..."
|
|
$VALGRIND bin/ctdb_test --nlist tests/4nodes.txt --listen 127.0.0.1:9001 &
|
|
$VALGRIND bin/ctdb_test --nlist tests/4nodes.txt --listen 127.0.0.2:9001 &
|
|
$VALGRIND bin/ctdb_test --nlist tests/4nodes.txt --listen 127.0.0.3:9001 &
|
|
$VALGRIND bin/ctdb_test --nlist tests/4nodes.txt --listen 127.0.0.4:9001
|
|
wait
|
|
|