suppress libcrypto issue in valgrind runs
This commit is contained in:
parent
1f5373599d
commit
11e1e147a3
|
@ -96,7 +96,7 @@ project
|
||||||
;
|
;
|
||||||
|
|
||||||
feature launcher : none valgrind : composite ;
|
feature launcher : none valgrind : composite ;
|
||||||
feature.compose <launcher>valgrind : <testing.launcher>"valgrind --tool=memcheck -v --num-callers=20 --read-var-info=yes --track-origins=yes --error-exitcode=222" <valgrind>on ;
|
feature.compose <launcher>valgrind : <testing.launcher>"valgrind --tool=memcheck -v --num-callers=20 --read-var-info=yes --track-origins=yes --error-exitcode=222 --suppressions=valgrind_suppressions.txt" <valgrind>on ;
|
||||||
|
|
||||||
test-suite libtorrent :
|
test-suite libtorrent :
|
||||||
[ run test_bitfield.cpp ]
|
[ run test_bitfield.cpp ]
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
{
|
||||||
|
openssl_asn_uninitialized_length
|
||||||
|
Memcheck:ASN1_STRING_set
|
||||||
|
fun:ASN1_STRING_set
|
||||||
|
fun:ASN1_mbstring_ncopy
|
||||||
|
fun:ASN1_mbstring_copy
|
||||||
|
fun:ASN1_STRING_to_UTF8
|
||||||
|
}
|
Loading…
Reference in New Issue