Add script to run LogRoleReplace, see #2173

This commit is contained in:
Patrik Nordwall 2012-06-04 13:35:08 +02:00
parent 3c7ade3cdb
commit e592cebe20
2 changed files with 36 additions and 0 deletions

View file

@ -0,0 +1,11 @@
#!/usr/bin/env bash
#
# Utility to make log files from multi-node tests easier to analyze.
# Replaces jvm names and host:port with corresponding logical role name.
#
# check for an sbt command
type -P sbt &> /dev/null || fail "sbt command not found"
sbt "project akka-remote-tests" "test:run-main akka.remote.testkit.LogRoleReplace $1 $2"