From 3d96b9a6acd157646ce521c8a9ecee33d1d7871f Mon Sep 17 00:00:00 2001 From: Guillaume Chatelet Date: Tue, 30 Sep 2025 09:03:42 +0000 Subject: [PATCH] [bazel] mark a few more tests as manual --- ortools/graph/BUILD.bazel | 1 + ortools/math_opt/cpp/BUILD.bazel | 1 + ortools/sat/BUILD.bazel | 6 +++++- 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ortools/graph/BUILD.bazel b/ortools/graph/BUILD.bazel index 44857577ae..9e7cd30795 100644 --- a/ortools/graph/BUILD.bazel +++ b/ortools/graph/BUILD.bazel @@ -776,6 +776,7 @@ cc_test( name = "dag_shortest_path_test", size = "small", srcs = ["dag_shortest_path_test.cc"], + tags = ["manual"], deps = [ ":dag_shortest_path", "//ortools/base:dump_vars", diff --git a/ortools/math_opt/cpp/BUILD.bazel b/ortools/math_opt/cpp/BUILD.bazel index 0ecfa61008..b56d33eed8 100644 --- a/ortools/math_opt/cpp/BUILD.bazel +++ b/ortools/math_opt/cpp/BUILD.bazel @@ -138,6 +138,7 @@ cc_library( cc_test( name = "model_test", srcs = ["model_test.cc"], + tags = ["manual"], deps = [ ":key_types", ":linear_constraint", diff --git a/ortools/sat/BUILD.bazel b/ortools/sat/BUILD.bazel index ae0a023b49..abacf5ec82 100644 --- a/ortools/sat/BUILD.bazel +++ b/ortools/sat/BUILD.bazel @@ -633,6 +633,7 @@ cc_test( name = "cp_model_search_test", size = "small", srcs = ["cp_model_search_test.cc"], + tags = ["manual"], deps = [ ":cp_model_cc_proto", ":cp_model_solver", @@ -1243,7 +1244,10 @@ cc_test( name = "cp_model_presolve_test", size = "small", srcs = ["cp_model_presolve_test.cc"], - tags = ["noautofuzz"], + tags = [ + "manual", + "noautofuzz", + ], deps = [ ":cp_model_cc_proto", ":cp_model_checker",