Skip to content

Commit

Permalink
*: temporarily skip some unstable test cases
Browse files Browse the repository at this point in the history
  • Loading branch information
bb7133 committed Jul 12, 2021
1 parent d070f70 commit 90de030
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
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

0 comments on commit 90de030

Please sign in to comment.