#!/bin/sh

CASES='simple_create 1_joiner_1_join_1_send 1_joiner_1_join_2_send 1_joiner_1_join_16_send 1_joiner_2_join_16_send 1_joiner_16_join_4_send 2_joiner_1_join_16_send'

if [ -z $1 ]; then
  echo "Usage: $0 <URL>"
  exit
fi


##########

echo "runtests $1"

for CASE in $CASES
do
  ./runtest $1 $CASE
done
