-
Bug
-
Resolution: Fixed
-
P4
-
1.4.1_07
-
07
-
x86
-
solaris
When running the automated regression tests 4615605 can fail at times if running the test in Ireland because it needs to start binaries on a machine in Santa Clara. The test will time out and the only way to get it to pass is to edit the test script and increase the sleep times and then run the test manually.
Increasing the timeout factor in JavaTest has no effect.
While increasing the sleep times works manually there's no way of knowing how long the sleep is needed so it would be better to find some other solution in the long term.
The script is attached for reference but the problem is in the following part of the script:
${JDK_141}${FS}bin${FS}tnameserv -ORBInitialPort 7111 > test.out 2>&1 &
TNAMESVR_PID=$!
sleep 10 <<===== Too short a time
grep "Ready." test.out
if [ $? != 0 ]
then
echo "tnameserv process does not start correctly"
cat test.out
kill -9 ${TNAMESVR_PID}
exit 3
fi
${JDK_141}${FS}bin${FS}java -classpath . -Dorg.omg.CORBA.ORBInitialHost=localhost -Dorg.omg.CORBA.ORBInitialPort=7111 -Djava.naming.factory.initial=com.sun.jndi.cosnaming.CNCtxFactory Server > server.out 2>&1 &
SERVER_PID=$!
sleep 10 <<===== Too short a time
grep "Server is ready" server.out
Increasing the timeout factor in JavaTest has no effect.
While increasing the sleep times works manually there's no way of knowing how long the sleep is needed so it would be better to find some other solution in the long term.
The script is attached for reference but the problem is in the following part of the script:
${JDK_141}${FS}bin${FS}tnameserv -ORBInitialPort 7111 > test.out 2>&1 &
TNAMESVR_PID=$!
sleep 10 <<===== Too short a time
grep "Ready." test.out
if [ $? != 0 ]
then
echo "tnameserv process does not start correctly"
cat test.out
kill -9 ${TNAMESVR_PID}
exit 3
fi
${JDK_141}${FS}bin${FS}java -classpath . -Dorg.omg.CORBA.ORBInitialHost=localhost -Dorg.omg.CORBA.ORBInitialPort=7111 -Djava.naming.factory.initial=com.sun.jndi.cosnaming.CNCtxFactory Server > server.out 2>&1 &
SERVER_PID=$!
sleep 10 <<===== Too short a time
grep "Server is ready" server.out