From 662a85c3a4879f213eb2cba0fdb552e5bd965c8d Mon Sep 17 00:00:00 2001 From: Chao Wang Date: Thu, 27 Nov 2025 13:06:35 +0800 Subject: [PATCH] *: add `bazel_pushdowntest` (#64704) ref pingcap/tidb#62575 --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index faf54e5e55..1e969b9ac4 100644 --- a/Makefile +++ b/Makefile @@ -752,6 +752,11 @@ bazel_txntest: failpoint-enable bazel_ci_simple_prepare bazel $(BAZEL_GLOBAL_CONFIG) test $(BAZEL_CMD_CONFIG) --test_arg=-with-real-tikv --define gotags=$(REAL_TIKV_TEST_TAGS) --jobs=1 \ -- //tests/realtikvtest/txntest/... +.PHONY: bazel_pushdowntest +bazel_pushdowntest: failpoint-enable bazel_ci_simple_prepare + bazel $(BAZEL_GLOBAL_CONFIG) test $(BAZEL_CMD_CONFIG) --test_output=all --test_arg=-with-real-tikv --define gotags=$(REAL_TIKV_TEST_TAGS) --jobs=1 \ + -- //tests/realtikvtest/pushdowntest/... + .PHONY: bazel_addindextest bazel_addindextest: failpoint-enable bazel_ci_simple_prepare bazel $(BAZEL_GLOBAL_CONFIG) test $(BAZEL_CMD_CONFIG) --test_output=all --test_arg=-with-real-tikv --define gotags=$(REAL_TIKV_TEST_TAGS) --jobs=1 \