-
Notifications
You must be signed in to change notification settings - Fork 93
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
Sanitize 8.10.tikv branch #372
Conversation
Signed-off-by: Yang Zhang <[email protected]>
/run-all-tests |
Signed-off-by: Yang Zhang <[email protected]>
/run-all-tests |
@LykxSassinator: adding LGTM is restricted to approvers and reviewers in OWNERS files. In response to this: Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
@glorv: adding LGTM is restricted to approvers and reviewers in OWNERS files. In response to this: Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: glorv, LykxSassinator The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
This test fails if it run as ./db_test, since previous test cases create
a dir under dbname causing the assertion in line 2722 to fail. It passes
when run as
make check -j x
, since test case is executed in separatedirectory.
TiKV CI cannot migrate to
make check -j x
(running each test case separately), it is now running withmake all_but_some_tests
(running all test cases in the same test suite in the same directory) because the sub-steps requirepython3, which is not available in TiKV CI centos7.