about summary refs log tree commit homepage
path: root/GNUmakefile
diff options
context:
space:
mode:
Diffstat (limited to 'GNUmakefile')
-rw-r--r--GNUmakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/GNUmakefile b/GNUmakefile
index 36fd8a4..97f68d5 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -12,11 +12,11 @@ all:: test
 test_units := $(wildcard test/test_*.rb)
 test: $(test_units)
 $(test_units):
-        $(RUBY) -w -I $(lib) $@ -v
+        $(RUBY) -I $(lib) $@ -v
 
 test-mt: export N = $(shell nproc 2>/dev/null || echo 4)
 test-mt:
-        $(RUBY) -w -I $(lib) $(addprefix -r./,$(test_units)) -eTime.now --
+        $(RUBY) -I $(lib) $(addprefix -r./,$(test_units)) -eTime.now --
 
 check-warnings:
         @(for i in $$(git ls-files '*.rb'| grep -v '^setup\.rb$$'); \