You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
470 B
10 lines
470 B
.PHONY: test-volume-server test-volume-server-short test-volume-server-rust-smoke
|
|
|
|
test-volume-server:
|
|
go test ./test/volume_server/... -v
|
|
|
|
test-volume-server-short:
|
|
go test ./test/volume_server/... -short -v
|
|
|
|
test-volume-server-rust-smoke:
|
|
VOLUME_SERVER_IMPL=rust go test ./test/volume_server/http ./test/volume_server/grpc -run 'TestAdminStatusAndHealthz|TestUploadReadRangeHeadDeleteRoundTrip|TestStateAndStatusRPCs|TestVolumeSyncStatusAndReadVolumeFileStatus' -v
|