forked from quic-go/quic-go
18 lines
487 B
Bash
18 lines
487 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
# Set up the routing needed for the simulation.
|
|
/setup.sh
|
|
|
|
if [ "$ROLE" == "client" ]; then
|
|
# Wait for the simulator to start up.
|
|
/wait-for-it.sh sim:57832 -s -t 10
|
|
echo "Starting QUIC client..."
|
|
echo "Client params: $CLIENT_PARAMS"
|
|
echo "Test case: $TESTCASE"
|
|
QUIC_GO_LOG_LEVEL=debug go run interop/client/main.go $CLIENT_PARAMS $REQUESTS
|
|
else
|
|
echo "Running QUIC server."
|
|
QUIC_GO_LOG_LEVEL=debug go run interop/server/main.go "$@"
|
|
fi
|