Dont include stack trace test in valgrind.
continuous-integration/drone/push Build is failing
Details
continuous-integration/drone/push Build is failing
Details
This commit is contained in:
parent
1dee4cd4a8
commit
002902eed9
|
@ -21,7 +21,7 @@ steps:
|
||||||
- cmake -DCMAKE_BUILD_TYPE=Release . -B build-release -DSTATICC=ON -DTESTS=ON
|
- cmake -DCMAKE_BUILD_TYPE=Release . -B build-release -DSTATICC=ON -DTESTS=ON
|
||||||
- cmake --build build-release --target all -- -j 4
|
- cmake --build build-release --target all -- -j 4
|
||||||
- build-release/ArbutilsTests -s --durations yes --use-colour yes
|
- 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
|
- name: style-check
|
||||||
image: deukhoofd/linux64builder
|
image: deukhoofd/linux64builder
|
||||||
failure: ignore
|
failure: ignore
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
#include "../src/Exception.hpp"
|
#include "../src/Exception.hpp"
|
||||||
using namespace ArbUt;
|
using namespace ArbUt;
|
||||||
|
|
||||||
TEST_CASE("Throw exception, get stack trace") {
|
TEST_CASE("Throw exception get stack trace") {
|
||||||
try {
|
try {
|
||||||
throw ArbUt::Exception("foobar");
|
throw ArbUt::Exception("foobar");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue