Skip to content

Commit

Permalink
Exclude some slow running tests from asan and/or valgrind (RobotLocom…
Browse files Browse the repository at this point in the history
  • Loading branch information
jamiesnape authored Jul 1, 2019
1 parent 24cda05 commit d15d147
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
3 changes: 2 additions & 1 deletion examples/schunk_wsg/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,9 @@ drake_cc_googletest(
# This test is prohibitively slow with --compilation_mode=dbg.
disable_in_compilation_mode_dbg = True,
# TODO(betsymcphail): Re-enable this test when it no longer
# causes timeouts in kcov and Valgrind Memcheck.
# causes timeouts in kcov, asan, and Valgrind Memcheck.
tags = [
"no_asan",
"no_kcov",
"no_memcheck",
],
Expand Down
4 changes: 3 additions & 1 deletion solvers/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -1429,8 +1429,10 @@ drake_cc_googletest(
# This test is quite long, so split it into 4 processes for better latency.
shard_count = 4,
tags = gurobi_test_tags() + mosek_test_tags() + [
# Excluding asan because it is unreasonably slow (> 30 minutes).
# Excluding asan and memcheck because it is unreasonably slow
# (> 30 minutes).
"no_asan",
"no_memcheck",
# Excluding tsan because an assertion fails in LLVM code. Issue #6179.
"no_tsan",
],
Expand Down
4 changes: 4 additions & 0 deletions systems/analysis/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -403,6 +403,10 @@ drake_cc_googletest(
timeout = "moderate",
# This test is prohibitively slow with --compilation_mode=dbg.
disable_in_compilation_mode_dbg = True,
tags = [
"no_asan",
"no_memcheck",
],
deps = [
":runge_kutta3_integrator",
"//common/test_utilities:eigen_matrix_compare",
Expand Down

0 comments on commit d15d147

Please sign in to comment.