-
Notifications
You must be signed in to change notification settings - Fork 106
/
run.sh
executable file
·30 lines (21 loc) · 923 Bytes
/
run.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/bin/sh
# ALLOW JOBS TO BE BACKGROUNDED
set -m
echo "Running recovery quickstart"
# if you want to test using the sun orb you
OPENJDK_CONFIG="-Dcom.sun.CORBA.POA.ORBServerId=1 -Dcom.sun.CORBA.POA.ORBPersistentServerPort=12567"
[ "x$QUICKSTART_NARAYANA_VERSION" != 'x' ] &&\
NARAYANA_VERSION_PARAM="-Dversion.narayana=${QUICKSTART_NARAYANA_VERSION}"
echo "Generating a recovery record ..."
mvn -e exec:java -Dexec.mainClass=Test -Dexec.args="-crash" $OPENJDK_CONFIG $NARAYANA_VERSION_PARAM
echo "Recovering failed service - this could take up to a minute or so ..."
mvn -e exec:java -Dexec.mainClass=Test -Dexec.args="-recover -auto" $OPENJDK_CONFIG $NARAYANA_VERSION_PARAM
XID1="target/ExampleXAResource1.xid_"
XID2="target/ExampleXAResource2.xid_"
echo "Testing that the XID data files were removed"
if [ -f $XID1 -a -f $XID2 ]; then
echo "JTS example failed"
exit -1
else
echo "JTS example passed"
fi