diff options
Diffstat (limited to 'run_replicas.sh')
-rwxr-xr-x | run_replicas.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/run_replicas.sh b/run_replicas.sh index a6cc553..52f33e8 100755 --- a/run_replicas.sh +++ b/run_replicas.sh @@ -6,6 +6,7 @@ fi for i in "${rep[@]}"; do echo "starting replica $i" #valgrind --leak-check=full ./hotstuff-app --conf hotstuff-sec${i}.conf > log${i} 2>&1 & - ./hotstuff-app --conf hotstuff-sec${i}.conf > log${i} 2>&1 & + gdb -ex r -ex bt -ex q --args ./hotstuff-app --conf hotstuff-sec${i}.conf > log${i} 2>&1 & + #./hotstuff-app --conf hotstuff-sec${i}.conf > log${i} 2>&1 & done wait |