From 02dbe5f96b5bbb79ad224e73cdfc5f3ca50691e7 Mon Sep 17 00:00:00 2001 From: Weizhen Wang Date: Tue, 22 Mar 2022 23:36:35 +0800 Subject: [PATCH] ddl: remove race skip for test Signed-off-by: Weizhen Wang --- ddl/table_modify_test.go | 7 ------- 1 file changed, 7 deletions(-) diff --git a/ddl/table_modify_test.go b/ddl/table_modify_test.go index 30e2d4d3d45c9..2cb1e88ad2933 100644 --- a/ddl/table_modify_test.go +++ b/ddl/table_modify_test.go @@ -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" ) @@ -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) @@ -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)