diff --git a/.drone.yml b/.drone.yml index 4f40f69..7b0369a 100644 --- a/.drone.yml +++ b/.drone.yml @@ -21,7 +21,7 @@ steps: - cmake -DCMAKE_BUILD_TYPE=Release . -B build-release -DSTATICC=ON -DTESTS=ON - cmake --build build-release --target all -- -j 4 - build-release/ArbutilsTests -s --durations yes --use-colour yes - - valgrind --tool=memcheck --gen-suppressions=all --leak-check=full --leak-resolution=med --track-origins=yes --vgdb=no --error-exitcode=1 build-release/ArbutilsTests + - valgrind --tool=memcheck --gen-suppressions=all --leak-check=full --leak-resolution=med --track-origins=yes --vgdb=no --error-exitcode=1 build-release/ArbutilsTests exclude:"Throw exception get stack trace" - name: style-check image: deukhoofd/linux64builder failure: ignore diff --git a/tests/ExceptionTests.cpp b/tests/ExceptionTests.cpp index 9e723e8..b31f6c9 100644 --- a/tests/ExceptionTests.cpp +++ b/tests/ExceptionTests.cpp @@ -3,7 +3,7 @@ #include "../src/Exception.hpp" using namespace ArbUt; -TEST_CASE("Throw exception, get stack trace") { +TEST_CASE("Throw exception get stack trace") { try { throw ArbUt::Exception("foobar"); }