Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoreutarass2010-12-08 22:47:43 +0000
committereutarass2010-12-08 22:47:43 +0000
commit5070c4623e621b460faf3617bd51358997c79d2b (patch)
treeb63eeec3828cda359ff277031c6ab279e2931c4d
parente73562e5be6a966a3b09b07c50ec903e43b0ef3f (diff)
downloadorg.eclipse.tcf-5070c4623e621b460faf3617bd51358997c79d2b.tar.gz
org.eclipse.tcf-5070c4623e621b460faf3617bd51358997c79d2b.tar.xz
org.eclipse.tcf-5070c4623e621b460faf3617bd51358997c79d2b.zip
Bug 331791: Add Unix domain socket support to TCP channel
-rwxr-xr-xtests/test-all30
1 files changed, 27 insertions, 3 deletions
diff --git a/tests/test-all b/tests/test-all
index 617c0899d..9a2573969 100755
--- a/tests/test-all
+++ b/tests/test-all
@@ -287,11 +287,12 @@ function build_and_test_agent()
echo >>logs/$LOGFILE
if $SSH "cd $TRUNK/agent; $MAKE `get_make_options` clean all" >>logs/$LOGFILE 2>&1
then
- local AGENT_LFILE=$BUILD/logs/agent-$HOST.txt
if [ $OPSYS = Windows ] ; then
- local AGENT_LFILE=`$SSH "cygpath -m $AGENT_LFILE"`
+ local AGENT_L_OPT=-L`$SSH "cygpath -m $BUILD/logs/agent-$HOST.txt"`
+ else
+ local AGENT_L_OPT=-L$BUILD/logs/agent-$HOST.txt
fi
- $SSH "$TRUNK/agent/obj/$OPSYS/$MACHINE/$CONF/agent -s TCP::1534 -L$AGENT_LFILE -l0" >>logs/$LOGFILE 2>&1 &
+ $SSH "$TRUNK/agent/obj/$OPSYS/$MACHINE/$CONF/agent -s TCP::1534 $AGENT_L_OPT -l0" >>logs/$LOGFILE 2>&1 &
sleep 15
TESTURL1=ID=Test-Agent-$HOST-$SEQ:TransportName=TCP:Host=$HOST:Port=1534
TESTURL2=ID=Test-Proxy-$HOST-$SEQ:TransportName=TCP:Host=$HOST:Port=1535
@@ -303,6 +304,29 @@ function build_and_test_agent()
$TESTURL1 \
>>logs/$LOGFILE 2>&1
then
+ if [ -z "$CFLAGS" ] ; then
+ # Test different channel implementations
+ $SSH "killall agent" >>logs/$LOGFILE 2>&1
+ if [ -r logs/agent-$HOST.txt ] ; then
+ echo >>logs/$LOGFILE
+ echo "Agent log:" >>logs/$LOGFILE
+ cat logs/agent-$HOST.txt >>logs/$LOGFILE
+ rm logs/agent-$HOST.txt
+ echo "End of agent log" >>logs/$LOGFILE
+ fi
+ if [ "$OPSYS" = Windows ] ; then
+ local AGENT_S_OPT=PIPE:
+ TESTURL1=ID=Test-Agent-$HOST-$SEQ:TransportName=PIPE:
+ elif [ "$OPSYS" = GNU/Linux ] ; then
+ local AGENT_S_OPT=UNIX:/tmp/TCFTest
+ TESTURL1=ID=Test-Agent-$HOST-$SEQ:TransportName=UNIX:Host=/tmp/TCFTest
+ else
+ local AGENT_S_OPT=TCP::1534
+ TESTURL1=ID=Test-Agent-$HOST-$SEQ:TransportName=TCP:Host=localhost:Port=1534
+ fi
+ $SSH "$TRUNK/agent/obj/$OPSYS/$MACHINE/$CONF/agent -s $AGENT_S_OPT $AGENT_L_OPT -l0" >>logs/$LOGFILE 2>&1 &
+ sleep 15
+ fi
if [ "$OPSYS" = Windows -a ! -z "$CFLAGS" ] ; then
# TCF server does not support PE object files
if [ -s logs/agent-$HOST.txt ]

Back to the top