Skip to content

Commit

Permalink
chore: run a bunch in parallel
Browse files Browse the repository at this point in the history
  • Loading branch information
acud committed Jul 30, 2024
1 parent 53f144a commit 026c847
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
15 changes: 15 additions & 0 deletions systest/tests/checkpoint_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,21 @@ func reuseCluster(tctx *testcontext.Context, restoreLayer uint32) (*cluster.Clus
)
}

func TestCheckpoint1(t *testing.T) {
// t.Parallel()
TestCheckpoint(t)
}

func TestCheckpoint2(t *testing.T) {
// t.Parallel()
TestCheckpoint(t)
}

func TestCheckpoint3(t *testing.T) {
// t.Parallel()
TestCheckpoint(t)
}

func TestCheckpoint(t *testing.T) {
// TODO(mafa): add new test with multi-smeshing nodes
t.Parallel()
Expand Down
1 change: 1 addition & 0 deletions systest/tests/nodes_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@ func TestAddNodes(t *testing.T) {
}

func TestFailedNodes(t *testing.T) {
t.Skip()
t.Parallel()

tctx := testcontext.New(t)
Expand Down

0 comments on commit 026c847

Please sign in to comment.