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

Makefile: add gotag enableassert for make server_check #51057

Merged
merged 26 commits into from
Oct 18, 2024
Merged
Changes from 2 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
d67f9ea
Makefile: add gotag for make server_check
winoros Feb 7, 2024
1dec276
Merge branch 'master' into add-test-tag-for-check-bin
winoros Jul 19, 2024
cb95d45
fix missed internal source type
winoros Jul 19, 2024
38b996e
enlarge the mem limit
winoros Jul 19, 2024
2c86f2f
test the cache size
winoros Jul 19, 2024
463c538
don't use v1 stats in integration tests
winoros Jul 19, 2024
cb89d39
Revert "don't use v1 stats in integration tests"
winoros Jul 24, 2024
0a53994
reset the lfu size
winoros Jul 24, 2024
4fe0145
Merge branch 'master' into add-test-tag-for-check-bin
winoros Jul 24, 2024
3856648
Merge remote-tracking branch 'origin/master' into add-test-tag-for-ch…
winoros Jul 29, 2024
fc3de1f
add one new tag for integration test
winoros Jul 29, 2024
6f6b5bc
try to fix bazel file & static check
winoros Jul 29, 2024
0a494bf
Merge remote-tracking branch 'origin/master' into add-test-tag-for-ch…
winoros Jul 29, 2024
be6f387
quick fix with detect full schema downward
AilinKid Jul 31, 2024
b6bfa46
Update comment thrown in testkit.go
winoros Jul 31, 2024
99884e5
Merge branch 'master' into add-test-tag-for-check-bin
winoros Sep 11, 2024
be4c1c9
address comments
winoros Sep 11, 2024
532f689
Merge remote-tracking branch 'yiding/add-test-tag-for-check-bin' into…
winoros Sep 11, 2024
b58586d
fix bazel file
winoros Sep 11, 2024
23df741
fix make check
winoros Sep 11, 2024
e3c8c17
fix
winoros Sep 11, 2024
918faba
Merge remote-tracking branch 'origin/master' into add-test-tag-for-ch…
winoros Sep 23, 2024
313a88e
Merge remote-tracking branch 'origin/master' into add-test-tag-for-ch…
winoros Sep 30, 2024
6289065
Merge branch 'master' into add-test-tag-for-check-bin
winoros Oct 16, 2024
bb82b4f
add a new finding
winoros Oct 17, 2024
9f5929a
try to fix flaky test
winoros Oct 18, 2024
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
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -245,9 +245,9 @@ enterprise-server:
.PHONY: server_check
server_check:
ifeq ($(TARGET), "")
$(GOBUILD) -cover $(RACE_FLAG) -ldflags '$(CHECK_LDFLAGS)' -o bin/tidb-server ./cmd/tidb-server
$(GOBUILD) -cover $(RACE_FLAG) -ldflags '$(CHECK_LDFLAGS)' --tags intest,deadlock -o bin/tidb-server ./cmd/tidb-server
else
$(GOBUILD) -cover $(RACE_FLAG) -ldflags '$(CHECK_LDFLAGS)' -o '$(TARGET)' ./cmd/tidb-server
$(GOBUILD) -cover $(RACE_FLAG) -ldflags '$(CHECK_LDFLAGS)' --tags intest,deadlock -o '$(TARGET)' ./cmd/tidb-server
endif

.PHONY: linux
Expand Down