diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 95e02019a..b3c391d39 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -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} .. diff --git a/tests/integration/CMakeLists.txt b/tests/integration/CMakeLists.txt index 6d96c04e9..35577c01a 100644 --- a/tests/integration/CMakeLists.txt +++ b/tests/integration/CMakeLists.txt @@ -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 diff --git a/tests/unit/CMakeLists.txt b/tests/unit/CMakeLists.txt index 569349e9d..3797af484 100644 --- a/tests/unit/CMakeLists.txt +++ b/tests/unit/CMakeLists.txt @@ -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' $ 2>&1 | c++filt\" DEPENDS unit-tests