Skip to content

Commit

Permalink
chore(Makefile): run project 2c tests separately (talent-plan#364)
Browse files Browse the repository at this point in the history
  • Loading branch information
WenyXu authored Jan 5, 2022
1 parent 7aa7a20 commit 35bbb17
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,13 @@ project2b:

project2c:
$(TEST_CLEAN)
$(GOTEST) ./raft ./kv/test_raftstore -run 2C || true
$(GOTEST) ./raft -run 2C || true
$(GOTEST) ./kv/test_raftstore -run ^TestOneSnapshot2C$ || true
$(GOTEST) ./kv/test_raftstore -run ^TestSnapshotRecover2C$ || true
$(GOTEST) ./kv/test_raftstore -run ^TestSnapshotRecoverManyClients2C$ || true
$(GOTEST) ./kv/test_raftstore -run ^TestSnapshotUnreliable2C$ || true
$(GOTEST) ./kv/test_raftstore -run ^TestSnapshotUnreliableRecover2C$ || true
$(GOTEST) ./kv/test_raftstore -run ^TestSnapshotUnreliableRecoverConcurrentPartition2C$ || true
$(TEST_CLEAN)

project3: project3a project3b project3c
Expand Down

0 comments on commit 35bbb17

Please sign in to comment.