Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test-all')
-rwxr-xr-xtests/test-all8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/test-all b/tests/test-all
index a8b036feb..471a5d2d6 100755
--- a/tests/test-all
+++ b/tests/test-all
@@ -288,25 +288,25 @@ function build_and_test_agent()
continue
fi
local AGENT_S_OPT=PIPE:
- TESTURL1=ID=Test-Agent-$HOST-$SEQ:TransportName=PIPE
+ TESTURL1=ID=Test-Agent-$HOST-$SEQ-$PROTO:TransportName=PIPE
;;
UNIX)
if [ "$OPSYS" != GNU/Linux ] ; then
continue;
fi
local AGENT_S_OPT=UNIX:/tmp/tcf
- TESTURL1=ID=Test-Agent-$HOST-$SEQ:TransportName=UNIX:Host=/tmp/tcf
+ TESTURL1=ID=Test-Agent-$HOST-$SEQ-$PROTO:TransportName=UNIX:Host=/tmp/tcf
;;
SSL)
if [ "$OPSYS" != GNU/Linux ] ; then
continue;
fi
local AGENT_S_OPT=SSL::1534
- TESTURL1=ID=Test-Agent-$HOST-$SEQ:TransportName=SSL:Host=localhost:Port=1534
+ TESTURL1=ID=Test-Agent-$HOST-$SEQ-$PROTO:TransportName=SSL:Host=localhost:Port=1534
;;
*)
local AGENT_S_OPT=TCP::1534
- TESTURL1=ID=Test-Agent-$HOST-$SEQ:TransportName=TCP:Host=localhost:Port=1534
+ TESTURL1=ID=Test-Agent-$HOST-$SEQ-$PROTO:TransportName=TCP:Host=localhost:Port=1534
;;
esac
$SSH "$TRUNK/agent/obj/$OPSYS/$MACHINE/$CONF/agent -s $AGENT_S_OPT $AGENT_L_OPT -l0" >>logs/$LOGFILE 2>&1 &

Back to the top