Add comment regarding sudo in Makefile robustness target

Signed-off-by: Ivan Valdes <ivan@vald.es>
pull/844/head
Ivan Valdes 2024-10-24 15:31:01 -07:00
parent 67826a9c2c
commit 6664240e05
No known key found for this signature in database
GPG Key ID: 4037D37741ED0CC5
1 changed files with 2 additions and 1 deletions

View File

@ -90,7 +90,8 @@ test-failpoint:
@echo "[failpoint] array freelist test"
BBOLT_VERIFY=all TEST_FREELIST_TYPE=array go test -v ${TESTFLAGS} -timeout 30m ./tests/failpoint
.PHONY: test-robustness # Running robustness tests requires root permission
.PHONY: test-robustness # Running robustness tests requires root permission for now
# TODO: Remove sudo once we fully migrate to the prow infrastructure
test-robustness: gofail-enable build
sudo env PATH=$$PATH go test -v ${TESTFLAGS} ./tests/dmflakey -test.root
sudo env PATH=$(PWD)/bin:$$PATH go test -v ${TESTFLAGS} ${ROBUSTNESS_TESTFLAGS} ./tests/robustness -test.root