diff --git a/executor/test/tiflashtest/BUILD.bazel b/executor/test/tiflashtest/BUILD.bazel index 00c3364890678..908ea69b2c10f 100644 --- a/executor/test/tiflashtest/BUILD.bazel +++ b/executor/test/tiflashtest/BUILD.bazel @@ -22,7 +22,6 @@ go_test( "//testkit", "//testkit/external", "//util/dbterror/exeerrors", - "//util/israce", "//util/memory", "//util/tiflashcompute", "@com_github_pingcap_errors//:errors", diff --git a/executor/test/tiflashtest/tiflash_test.go b/executor/test/tiflashtest/tiflash_test.go index 3ca121c1de9c9..1a4891b83f142 100644 --- a/executor/test/tiflashtest/tiflash_test.go +++ b/executor/test/tiflashtest/tiflash_test.go @@ -37,7 +37,6 @@ import ( "github.com/pingcap/tidb/testkit" "github.com/pingcap/tidb/testkit/external" "github.com/pingcap/tidb/util/dbterror/exeerrors" - "github.com/pingcap/tidb/util/israce" "github.com/pingcap/tidb/util/memory" "github.com/pingcap/tidb/util/tiflashcompute" "github.com/stretchr/testify/require" @@ -204,9 +203,6 @@ func TestJoinRace(t *testing.T) { } func TestMppExecution(t *testing.T) { - if israce.RaceEnabled { - t.Skip("skip race test because of long running") - } store := testkit.CreateMockStore(t, withMockTiFlash(2)) tk := testkit.NewTestKit(t, store) tk.MustExec("use test")