1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

ci: remove libsegfault usage as its gone in newer glibc versions

Signed-off-by: Steffen Vogel <steffen.vogel@opal-rt.com>
This commit is contained in:
Steffen Vogel 2023-01-11 12:51:48 +01:00
parent 59bd1dea56
commit 8464975447
3 changed files with 0 additions and 9 deletions

View file

@ -126,9 +126,6 @@ test:cppcheck:
test:unit:
stage: test
image: ${DOCKER_IMAGE_DEV}:${DOCKER_TAG}
variables:
LD_PRELOAD: /usr/lib64/libSegFault.so
SEGFAULT_SIGNALS: all
script:
- mkdir -p build && cd build
- cmake ${CMAKE_OPTS} ..

View file

@ -10,9 +10,6 @@ add_custom_target(run-integration-tests
/bin/bash -o pipefail -c \"
SRCDIR=${PROJECT_SOURCE_DIR}
BUILDDIR=${PROJECT_BINARY_DIR}
LD_PRELOAD=/usr/lib64/libSegFault.so
SEGFAULT_SIGNALS=all
SEGFAULT_SIGNALS='bus abrt'
${PROJECT_SOURCE_DIR}/tools/integration-tests.sh 2>&1 | c++filt\"
USES_TERMINAL
DEPENDS

View file

@ -30,9 +30,6 @@ target_link_libraries(unit-tests PUBLIC
add_custom_target(run-unit-tests
COMMAND
/bin/bash -o pipefail -c \"
LD_PRELOAD=/usr/lib64/libSegFault.so
SEGFAULT_SIGNALS=all
SEGFAULT_SIGNALS='bus abrt'
$<TARGET_FILE:unit-tests> 2>&1 | c++filt\"
DEPENDS
unit-tests