-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathvalgrind.supp
More file actions
38 lines (35 loc) · 795 Bytes
/
valgrind.supp
File metadata and controls
38 lines (35 loc) · 795 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# Valgrind suppressions for allo-isolate
#
# This file contains suppressions for known false positives in Valgrind
# when running allo-isolate tests.
# Suppress memory leak from Rust's allocator initialization
# This appears to be related to random seed initialization and is a false positive
{
rust_allocator_init
Memcheck:Leak
match-leak-kinds: possible
fun:malloc
fun:alloc
fun:alloc_impl
fun:allocate
...
}
# Alternative suppression for the specific pattern seen in the CI
{
rust_allocator_random_seed
Memcheck:Leak
match-leak-kinds: possible
fun:malloc
obj:*
obj:*
obj:*
}
# Suppress any possible leaks from Rust's std library initialization
{
rust_std_init
Memcheck:Leak
match-leak-kinds: possible
fun:malloc
...
fun:std*
}