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

*: temporarily skip some unstable test cases #26149

Merged
merged 6 commits into from
Jul 12, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
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
1 change: 1 addition & 0 deletions executor/set_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -695,6 +695,7 @@ func (s *testSuite5) TestSetCollationAndCharset(c *C) {
}

func (s *testSuite5) TestValidateSetVar(c *C) {
c.Skip("Skip this unstable test temporarily and bring it back before 2021-07-26")
tk := testkit.NewTestKit(c, s.store)

_, err := tk.Exec("set global tidb_distsql_scan_concurrency='fff';")
Expand Down
1 change: 1 addition & 0 deletions expression/expr_to_pb_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -904,6 +904,7 @@ func (s *testEvaluatorSuite) TestExprPushDownToFlash(c *C) {
}

func (s *testEvaluatorSuite) TestExprOnlyPushDownToFlash(c *C) {
c.Skip("Skip this unstable test temporarily and bring it back before 2021-07-26")
sc := new(stmtctx.StatementContext)
client := new(mock.Client)
dg := new(dataGen4Expr2PbTest)
Expand Down
1 change: 1 addition & 0 deletions sessionctx/variable/sysvar_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -466,6 +466,7 @@ func (*testSysVarSuite) TestIsNoop(c *C) {
}

func (*testSysVarSuite) TestInstanceScopedVars(c *C) {
c.Skip("Skip this unstable test temporarily and bring it back before 2021-07-26")
// This tests instance scoped variables through GetSessionOrGlobalSystemVar().
// Eventually these should be changed to use getters so that the switch
// statement in GetSessionOnlySysVars can be removed.
Expand Down
1 change: 1 addition & 0 deletions table/tables/tables_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -388,6 +388,7 @@ func (ts *testSuite) TestIterRecords(c *C) {
}

func (ts *testSuite) TestTableFromMeta(c *C) {
c.Skip("Skip this unstable test temporarily and bring it back before 2021-07-26")
tk := testkit.NewTestKitWithInit(c, ts.store)
tk.MustExec("use test")
tk.MustExec("CREATE TABLE meta (a int primary key auto_increment, b varchar(255) unique)")
Expand Down