Skip to content
Guy M. Allard edited this page Mar 8, 2018 · 3 revisions

Script follows:

#!/bin/sh
#

# AMQ - 1.0
pref="STOMP_PORT=61613 go test -v"
echo =============== AMQ 1.0 ===============
echo $pref
eval $pref

# AMQ - 1.1
pref="STOMP_PORT=61613 STOMP_TEST11p=1.1 STOMP_HB11LONG=y STOMP_AMQ11=y go test -v -timeout 10m30s"
echo =============== AMQ 1.1 ===============
echo $pref
eval $pref

# AMQ - 1.2
pref="STOMP_PORT=61613 STOMP_TEST11p=1.2 STOMP_HB11LONG=y STOMP_AMQ11=y go test -v -timeout 10m30s"
echo =============== AMQ 1.2 ===============
echo $pref
eval $pref

# Apollo - 1.0
pref="STOMP_PORT=62613 STOMP_APOLLO=y go test -v"
echo =============== Apollo 1.0 ===============
echo $pref
eval $pref

# Apollo - 1.1
pref="STOMP_PORT=62613 STOMP_TEST11p=y STOMP_HB11LONG=y STOMP_APOLLO=y go test -v -timeout 10m30s"
echo =============== Apollo 1.1 ===============
echo $pref
eval $pref

# Apollo - 1.2
pref="STOMP_PORT=62613 STOMP_TEST11p=1.2 STOMP_HB11LONG=y STOMP_APOLLO=y go test -v -timeout 10m30s"
echo =============== Apollo 1.2 ===============
echo $pref
eval $pref

# Rabbitmq - 1.0
pref="STOMP_RMQ=y STOMP_PORT=41613 go test -v"
echo =============== RMQ 1.0 ===============
echo $pref
eval $pref

# Rabbitmq - 1.1
pref="STOMP_TEST11p=1.1 STOMP_RMQ=y STOMP_PORT=41613 STOMP_HB11LONG=y go test -v -timeout 10m30s"
echo =============== RMQ 1.1 ===============
echo $pref
eval $pref

# Rabbitmq - 1.2
pref="STOMP_TEST11p=1.2 STOMP_RMQ=y STOMP_PORT=41613 STOMP_HB11LONG=y go test -v -timeout 10m30s"
echo =============== RMQ 1.2 ===============
echo $pref
eval $pref

# Artemis - 1.0
pref="STOMP_ARTEMIS=y STOMP_PORT=31613 STOMP_HB11LONG=y go test -v -timeout 10m30s"
echo =============== Artemis 1.0 ===============
echo $pref
eval $pref

# Artemis - 1.1
pref="STOMP_ARTEMIS=y STOMP_PORT=31613 STOMP_TEST11p=1.1 STOMP_HB11LONG=y go test -v -timeout 10m30s"
echo =============== Artemis 1.1 ===============
echo $pref
eval $pref

# Artemis - 1.2
pref="STOMP_ARTEMIS=y STOMP_PORT=31613 STOMP_TEST11p=1.2 STOMP_HB11LONG=y go test -v -timeout 10m30s"
echo =============== Artemis 1.2 ===============
echo $pref
eval $pref

set +x
exit 0

Clone this wiki locally