Skip to content

Commit

Permalink
Disable kcov on CRU and VGT tests (RobotLocomotion#20390)
Browse files Browse the repository at this point in the history
  • Loading branch information
calderpg-tri authored Oct 18, 2023
1 parent 8b8dace commit bdcd24b
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 6 deletions.
19 changes: 16 additions & 3 deletions tools/workspace/common_robotics_utilities/package.BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,10 @@ cc_test(
name = "hausdorff_distance_test",
srcs = ["test/hausdorff_distance_test.cpp"],
env = {"OMP_NUM_THREADS": "2"},
tags = ["cpu:2"],
tags = [
"cpu:2",
"no_kcov",
],
deps = [
":common_robotics_utilities",
"@eigen",
Expand All @@ -72,6 +75,7 @@ cc_test(
cc_test(
name = "maybe_test",
srcs = ["test/maybe_test.cpp"],
tags = ["no_kcov"],
deps = [
":common_robotics_utilities",
"@eigen",
Expand All @@ -84,7 +88,10 @@ cc_test(
name = "parallelism_test",
srcs = ["test/parallelism_test.cpp"],
env = {"OMP_NUM_THREADS": "2"},
tags = ["cpu:2"],
tags = [
"cpu:2",
"no_kcov",
],
timeout = "moderate",
deps = [
":common_robotics_utilities",
Expand All @@ -97,7 +104,10 @@ cc_test(
name = "planning_test",
srcs = ["test/planning_test.cpp"],
env = {"OMP_NUM_THREADS": "2"},
tags = ["cpu:2"],
tags = [
"cpu:2",
"no_kcov",
],
deps = [
":common_robotics_utilities",
"@eigen",
Expand All @@ -110,6 +120,7 @@ cc_test(
cc_test(
name = "task_planning_test",
srcs = ["test/task_planning_test.cpp"],
tags = ["no_kcov"],
deps = [
":common_robotics_utilities",
"@gtest//:without_main",
Expand All @@ -119,6 +130,7 @@ cc_test(
cc_test(
name = "utility_test",
srcs = ["test/utility_test.cpp"],
tags = ["no_kcov"],
deps = [
":common_robotics_utilities",
"@eigen",
Expand All @@ -129,6 +141,7 @@ cc_test(
cc_test(
name = "voxel_grid_test",
srcs = ["test/voxel_grid_test.cpp"],
tags = ["no_kcov"],
deps = [
":common_robotics_utilities",
"@eigen",
Expand Down
15 changes: 12 additions & 3 deletions tools/workspace/voxelized_geometry_tools/package.BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,10 @@ cc_test(
name = "pointcloud_voxelization_test",
srcs = ["test/pointcloud_voxelization_test.cpp"],
env = {"OMP_NUM_THREADS": "2"},
tags = ["cpu:2"],
tags = [
"cpu:2",
"no_kcov",
],
deps = [
":voxelized_geometry_tools",
":cuda_voxelization_helpers",
Expand All @@ -131,7 +134,10 @@ cc_test(
name = "mesh_rasterization_test",
srcs = ["test/mesh_rasterization_test.cpp"],
env = {"OMP_NUM_THREADS": "2"},
tags = ["cpu:2"],
tags = [
"cpu:2",
"no_kcov",
],
deps = [
":voxelized_geometry_tools",
"@common_robotics_utilities",
Expand All @@ -144,7 +150,10 @@ cc_test(
name = "sdf_generation_test",
srcs = ["test/sdf_generation_test.cpp"],
env = {"OMP_NUM_THREADS": "2"},
tags = ["cpu:2"],
tags = [
"cpu:2",
"no_kcov",
],
deps = [
":voxelized_geometry_tools",
"@common_robotics_utilities",
Expand Down

0 comments on commit bdcd24b

Please sign in to comment.