Dont include stack trace test in valgrind.
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Deukhoofd 2020-08-15 14:05:22 +02:00
parent 1dee4cd4a8
commit 002902eed9
Signed by: Deukhoofd
GPG Key ID: F63E044490819F6F
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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");
}