#!/bin/sh

# Remember that this script is in apps/test/scrips/unix
# and current directory should be apps/test

ix_base=../..
ix_scripts=$ix_base/scripts/unix

# 1st arg is the communication strategy
strategy=$1
shift
echo "Using communication strategy $strategy"

# Run allowing built-in communication strategies.
# Remember that you must specify the -ipc=startegyClassName parameter.

env CLASSPATH=java $ix_scripts/ix-comms-java $strategy test.Ip2Example "$@"
