Skip to content

Commit

Permalink
*: temporarily skip some unstable test cases. (#25548)
Browse files Browse the repository at this point in the history
  • Loading branch information
bb7133 authored Jun 18, 2021
1 parent 1314b08 commit 5b39233
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions ddl/db_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -310,6 +310,7 @@ func (s *testDBSuite8) TestAddPrimaryKeyRollback2(c *C) {
}

func (s *testDBSuite2) TestAddUniqueIndexRollback(c *C) {
c.Skip("unstable, skip it and fix it before 20210702")
hasNullValsInKey := false
idxName := "c3_index"
addIdxSQL := "create unique index c3_index on t1 (c3)"
Expand Down
1 change: 1 addition & 0 deletions executor/stale_txn_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -828,6 +828,7 @@ func (s *testStaleTxnSuite) TestSetTransactionInfoSchema(c *C) {
}

func (s *testStaleTxnSuite) TestStaleSelect(c *C) {
c.Skip("unstable, skip it and fix it before 20210702")
tk := testkit.NewTestKit(c, s.store)
tk.MustExec("use test")
tk.MustExec("drop table if exists t")
Expand Down
3 changes: 3 additions & 0 deletions planner/core/prepare_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ func (s *testPrepareSerialSuite) TestPrepareCache(c *C) {
}

func (s *testPrepareSerialSuite) TestPrepareCacheIndexScan(c *C) {
c.Skip("unstable, skip it and fix it before 20210702")
defer testleak.AfterTest(c)()
store, dom, err := newStoreWithBootstrap()
c.Assert(err, IsNil)
Expand Down Expand Up @@ -302,6 +303,7 @@ func (s *testPrepareSerialSuite) TestPrepareOverMaxPreparedStmtCount(c *C) {

// unit test for issue https://github.com/pingcap/tidb/issues/8518
func (s *testPrepareSerialSuite) TestPrepareTableAsNameOnGroupByWithCache(c *C) {
c.Skip("unstable, skip it and fix it before 20210702")
defer testleak.AfterTest(c)()
store, dom, err := newStoreWithBootstrap()
c.Assert(err, IsNil)
Expand Down Expand Up @@ -993,6 +995,7 @@ func (s *testPrepareSuite) TestInvisibleIndex(c *C) {

// Test for issue https://github.com/pingcap/tidb/issues/22167
func (s *testPrepareSerialSuite) TestPrepareCacheWithJoinTable(c *C) {
c.Skip("unstable, skip it and fix it before 20210702")
defer testleak.AfterTest(c)()
store, dom, err := newStoreWithBootstrap()
c.Assert(err, IsNil)
Expand Down
1 change: 1 addition & 0 deletions server/tidb_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1377,6 +1377,7 @@ func (ts *tidbTestTopSQLSuite) TestTopSQLCPUProfile(c *C) {
}

func (ts *tidbTestTopSQLSuite) TestTopSQLAgent(c *C) {
c.Skip("unstable, skip it and fix it before 20210702")
db, err := sql.Open("mysql", ts.getDSN())
c.Assert(err, IsNil, Commentf("Error connecting"))
defer func() {
Expand Down

0 comments on commit 5b39233

Please sign in to comment.