Skip to content

Commit a7c84cc

Browse files
committed
clean up tests and static analysis findings
1 parent 27afcce commit a7c84cc

File tree

1,055 files changed

+523203
-1359
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,055 files changed

+523203
-1359
lines changed

.settings/language.settings.xml

Lines changed: 0 additions & 30 deletions
This file was deleted.

.settings/org.eclipse.cdt.codan.core.prefs

Lines changed: 0 additions & 67 deletions
This file was deleted.

Dockerfile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,17 @@
11
FROM python:3.11-bookworm
22

33
# Build environment for cwebsocket and Autobahn wstest inside the container only
4+
# Includes all QA and analysis tools: valgrind, cppcheck, flawfinder, clang, lcov
45
RUN apt-get update \
56
&& DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
67
build-essential autoconf automake libtool pkg-config \
78
libssl-dev libev-dev zlib1g-dev \
9+
valgrind \
10+
cppcheck \
11+
flawfinder \
12+
clang \
13+
clang-tools \
14+
lcov \
815
&& rm -rf /var/lib/apt/lists/*
916

1017
WORKDIR /app

0 commit comments

Comments
 (0)