Skip to content

Commit

Permalink
ddl: remove race skip for test
Browse files Browse the repository at this point in the history
Signed-off-by: Weizhen Wang <wangweizhen@pingcap.com>
  • Loading branch information
hawkingrei committed Mar 22, 2022
1 parent 9f72bcd commit 02dbe5f
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions ddl/table_modify_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ import (
"github.com/pingcap/tidb/testkit"
"github.com/pingcap/tidb/util"
"github.com/pingcap/tidb/util/admin"
"github.com/pingcap/tidb/util/israce"
"github.com/stretchr/testify/require"
)

Expand Down Expand Up @@ -114,9 +113,6 @@ func TestCreateTable(t *testing.T) {
}

func TestLockTableReadOnly(t *testing.T) {
if israce.RaceEnabled {
t.Skip("skip race test")
}
store, clean := testkit.CreateMockStoreWithSchemaLease(t, tableModifyLease)
defer clean()
tk1 := testkit.NewTestKit(t, store)
Expand Down Expand Up @@ -181,9 +177,6 @@ func TestLockTableReadOnly(t *testing.T) {

// TestConcurrentLockTables test concurrent lock/unlock tables.
func TestConcurrentLockTables(t *testing.T) {
if israce.RaceEnabled {
t.Skip("skip race test")
}
store, dom, clean := testkit.CreateMockStoreAndDomainWithSchemaLease(t, tableModifyLease)
defer clean()
tk1 := testkit.NewTestKit(t, store)
Expand Down

0 comments on commit 02dbe5f

Please sign in to comment.