.PHONY: canonical control test

test: canonical control

canonical:
	go test ./... -run TestPathTraversal -count=1 -v 2>&1 | tee canonical.log | grep -E "(CALLSITE_HIT|PROOF_MARKER)"

control:
	go test ./... -run TestSafeRepoName -count=1 -v 2>&1 | tee control.log | grep -E "(CALLSITE_HIT|NC_MARKER)"

