summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 83fe7b2..db23b58 100644
--- a/Makefile
+++ b/Makefile
@@ -160,9 +160,10 @@ $(BENCHDIR)/benchinput.md: progit
cat progit/$$lang/*/*.markdown >> $@; \
done
+# for more accurate results, run with
+# sudo renice -10 $$; make bench
bench: $(BENCHFILE)
- { sudo renice -10 $$$$; \
- for x in `seq 1 $(NUMRUNS)` ; do \
+ { for x in `seq 1 $(NUMRUNS)` ; do \
/usr/bin/env time -p $(PROG) </dev/null >/dev/null ; \
/usr/bin/env time -p $(PROG) $< >/dev/null ; \
done \