Skip to content

Commit

Permalink
Use Latest Interop Runner Docker Image (#3542)
Browse files Browse the repository at this point in the history
  • Loading branch information
nibanks committed Oct 1, 2023
1 parent 0ba1fc7 commit 7aa1820
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions scripts/qns.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM martenseemann/quic-network-simulator-endpoint@sha256:ff6ab6273c22d0609e2c0a123a15310da8bcd27052e8aaf10a6cc799a0218a4c as source
FROM martenseemann/quic-network-simulator-endpoint@sha256:2ec0a19a54f4547f068a81afcb3e92251b8808934eb86e5cb6919d91c4958791 as source
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update -y \
&& apt-get install -y \
Expand All @@ -17,7 +17,7 @@ ENV PATH="/root/.dotnet/tools:${PATH}"
RUN cmake -DQUIC_BUILD_TOOLS=on -DQUIC_ENABLE_LOGGING=on ..
RUN cmake --build .

FROM martenseemann/quic-network-simulator-endpoint@sha256:ff6ab6273c22d0609e2c0a123a15310da8bcd27052e8aaf10a6cc799a0218a4c
FROM martenseemann/quic-network-simulator-endpoint@sha256:2ec0a19a54f4547f068a81afcb3e92251b8808934eb86e5cb6919d91c4958791
RUN apt-get update -y \
&& apt-get install -y \
libatomic1 \
Expand Down
16 changes: 8 additions & 8 deletions scripts/run_endpoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ fi
# - CLIENT_PARAMS contains user-supplied command line parameters

# Start LTTng live streaming.
echo "Starting LTTng logging..."
lttng -q create msquiclive --live 1000
lttng enable-event --userspace CLOG_*
lttng add-context --userspace --type=vpid --type=vtid
lttng start
babeltrace -i lttng-live net://localhost
babeltrace --names all -i lttng-live net://localhost/host/`hostname`/msquiclive \
| stdbuf -i0 -o0 clog2text_lttng -s clog.sidecar --t --c > /logs/quic.log &
#echo "Starting LTTng logging..."
#lttng -q create msquiclive --live 1000
#lttng enable-event --userspace CLOG_*
#lttng add-context --userspace --type=vpid --type=vtid
#lttng start
#babeltrace -i lttng-live net://localhost
#babeltrace --names all -i lttng-live net://localhost/host/`hostname`/msquiclive \
# | stdbuf -i0 -o0 clog2text_lttng -s clog.sidecar --t --c > /logs/quic.log &

if [ "$ROLE" == "client" ]; then
# Wait for the simulator to start up.
Expand Down

0 comments on commit 7aa1820

Please sign in to comment.