Merge pull request #2181 from lucas-clemente/interop-fixes

fix interop runner
This commit is contained in:
Marten Seemann
2019-10-24 00:55:19 -07:00
committed by GitHub
2 changed files with 3 additions and 3 deletions

View File

@@ -13,7 +13,7 @@ ARG CACHEBUST=1
RUN git clone https://github.com/lucas-clemente/quic-go && \
cd quic-go && \
git checkout interop && \
git fetch origin interop && git checkout -t origin/interop && \
go get ./...
WORKDIR /quic-go

View File

@@ -10,8 +10,8 @@ if [ "$ROLE" == "client" ]; then
echo "Starting QUIC client..."
echo "Client params: $CLIENT_PARAMS"
echo "Test case: $TESTCASE"
./client $CLIENT_PARAMS $REQUESTS
QUIC_GO_LOG_LEVEL=debug ./client $CLIENT_PARAMS $REQUESTS
else
echo "Running QUIC server."
./server "$@"
QUIC_GO_LOG_LEVEL=debug ./server "$@"
fi