about summary refs log tree commit homepage
path: root/GNUmakefile
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2009-03-30 01:48:28 -0700
committerEric Wong <normalperson@yhbt.net>2009-03-30 01:48:28 -0700
commit8f174df6394d562bcc8542ebcd2a9e45c9a927ff (patch)
tree2e1d66c4836c5e7e09b5ed3c9816eeb8593d4619 /GNUmakefile
parenta35ae281058411f184af53dcdbe9e58421d84f27 (diff)
downloadunicorn-8f174df6394d562bcc8542ebcd2a9e45c9a927ff.tar.gz
This makes it easy to run unit or exec tests
independently of the other.

Removed the unused slow-tests targets.
Diffstat (limited to 'GNUmakefile')
-rw-r--r--GNUmakefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/GNUmakefile b/GNUmakefile
index 63a5bd0..ef58123 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -57,7 +57,8 @@ test: $(T) $(T_n)
         @cat $(t_log) | $(ruby) test/aggregate.rb
         @$(RM) $(t_log)
 
-slow-tests: $(slow_tests)
+test-exec: $(wildcard test/exec/test_*.rb)
+test-unit: $(wildcard test/unit/test_*.rb)
 $(slow_tests):
         @$(MAKE) $(shell $(awk_slow) $@)