about summary refs log tree commit homepage
path: root/GNUmakefile
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2009-04-21 11:14:43 -0700
committerEric Wong <normalperson@yhbt.net>2009-04-21 11:16:26 -0700
commit0a53bd1512115c55cae028cafe234550af1e17ba (patch)
treec19742d9a1229b6379cf6681441753faf4435366 /GNUmakefile
parent78c076ebb118a8312a2912dddb8a93d3ea80fa99 (diff)
downloadunicorn-0a53bd1512115c55cae028cafe234550af1e17ba.tar.gz
It's fast under 1.8, but 1.9 performance is really
terrible, so run the tests in parallel.
Diffstat (limited to 'GNUmakefile')
-rw-r--r--GNUmakefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/GNUmakefile b/GNUmakefile
index 3d3bde9..7b871d4 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -14,7 +14,8 @@ endif
 awk_slow := awk '/def test_/{print FILENAME"--"$$2".n"}' 2>/dev/null
 
 rails_vers := $(subst test/rails/app-,,$(wildcard test/rails/app-*))
-slow_tests := test/unit/test_server.rb test/exec/test_exec.rb
+slow_tests := test/unit/test_server.rb test/exec/test_exec.rb \
+  test/unit/test_signals.rb
 log_suffix = .$(RUBY_VERSION).log
 T_r := $(wildcard test/rails/test*.rb)
 T := $(filter-out $(slow_tests) $(T_r), $(wildcard test/*/test*.rb))