From a96a1d50b34ad241b42db6a98a6a7afd82d1309d Mon Sep 17 00:00:00 2001 From: Trent Mick Date: Sun, 18 Jan 2015 21:24:38 -0800 Subject: [PATCH] Make it more clear that you can run most of the test suite without root and how to skip the root-y parts. --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index b7ec4f0..be5ce54 100644 --- a/Makefile +++ b/Makefile @@ -78,6 +78,7 @@ distclean: test: $(NODEUNIT) test -z "$(DTRACE_UP_IN_HERE)" || test -n "$(SKIP_DTRACE)" || \ (node -e 'require("dtrace-provider").createDTraceProvider("isthisthingon")' && \ + echo "\nNote: Use 'SKIP_DTRACE=1 make test' to skip parts of the test suite that require root." && \ $(SUDO) $(NODEUNIT) test/dtrace.test.js) $(NODEUNIT) $(NON_DTRACE_TEST_FILES)