Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI: rename TestSchemaChange to distinguish the tests #16694

Merged
merged 2 commits into from
Sep 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion go/test/endtoend/onlineddl/flow/onlineddl_flow_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ func TestMain(m *testing.M) {

}

func TestSchemaChange(t *testing.T) {
func TestOnlineDDLFlow(t *testing.T) {
defer cluster.PanicHandler(t)
ctx := context.Background()

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ func TestMain(m *testing.M) {

}

func TestSchemaChange(t *testing.T) {
func TestRevertSchemaChanges(t *testing.T) {
defer cluster.PanicHandler(t)
shards = clusterInstance.Keyspaces[0].Shards
require.Equal(t, 1, len(shards))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ func TestMain(m *testing.M) {

}

func TestSchemaChange(t *testing.T) {
func TestSchedulerSchemaChanges(t *testing.T) {

throttler.EnableLagThrottlerAndWaitForStatus(t, clusterInstance)

Expand Down
2 changes: 1 addition & 1 deletion go/test/endtoend/onlineddl/vrepl/onlineddl_vrepl_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ func TestMain(m *testing.M) {

}

func TestSchemaChange(t *testing.T) {
func TestVreplSchemaChanges(t *testing.T) {
defer cluster.PanicHandler(t)

shards = clusterInstance.Keyspaces[0].Shards
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ func TestMain(m *testing.M) {

}

func TestSchemaChange(t *testing.T) {
func TestVreplMiniStressSchemaChanges(t *testing.T) {
defer cluster.PanicHandler(t)

ctx := context.Background()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -481,7 +481,7 @@ func TestMain(m *testing.M) {

}

func TestSchemaChange(t *testing.T) {
func TestVreplStressSchemaChanges(t *testing.T) {
defer cluster.PanicHandler(t)

shards = clusterInstance.Keyspaces[0].Shards
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ func TestMain(m *testing.M) {

}

func TestSchemaChange(t *testing.T) {
func TestVreplSuiteSchemaChanges(t *testing.T) {
defer cluster.PanicHandler(t)

shards := clusterInstance.Keyspaces[0].Shards
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ func TestMain(m *testing.M) {

}

func TestSchemaChange(t *testing.T) {
func TestSchemadiffSchemaChanges(t *testing.T) {
defer cluster.PanicHandler(t)

shards := clusterInstance.Keyspaces[0].Shards
Expand Down
Loading