Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: Disable drd, helgrind in vmmalloc_fork tests #2328

Merged
merged 1 commit into from
Nov 6, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/test/vmmalloc_fork/TEST1
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,11 @@ require_fs_type any
require_build_type debug nondebug
require_no_asan

# This test uses pthread mutexes across fork, and recreates them in the child
# process.
configure_valgrind helgrind force-disable
configure_valgrind drd force-disable

setup

export VMMALLOC_POOL_SIZE=$((64 * 1024 * 1024))
Expand Down
5 changes: 5 additions & 0 deletions src/test/vmmalloc_fork/TEST3
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,11 @@ require_fs_type any
require_build_type debug nondebug
require_no_asan

# This test uses pthread mutexes across fork, and recreates them in the child
# process.
configure_valgrind helgrind force-disable
configure_valgrind drd force-disable

setup

export VMMALLOC_POOL_SIZE=$((64 * 1024 * 1024))
Expand Down