Skip to content

Commit

Permalink
ddl: remove race skip for test (#33324)
Browse files Browse the repository at this point in the history
close #31716
  • Loading branch information
hawkingrei authored Mar 23, 2022
1 parent 3ddd959 commit 40a70a3
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 40a70a3

Please sign in to comment.