about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2009-10-26 02:30:24 -0700
committerEric Wong <normalperson@yhbt.net>2009-10-26 02:30:24 -0700
commit370ff1b4bffff01f3833e4721f6ba7149111e3fb (patch)
tree7e54e15c182c5bf7248f225e1b26a1e755f060a4
parent8e9672d13ed07cc262894b4770c0b9c016359712 (diff)
downloadrainbows-370ff1b4bffff01f3833e4721f6ba7149111e3fb.tar.gz
Even though our tests do an extra check, it's faster to
not unnecessarily invoke the check in the first place.
-rw-r--r--t/GNUmakefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/t/GNUmakefile b/t/GNUmakefile
index e45d453..5084643 100644
--- a/t/GNUmakefile
+++ b/t/GNUmakefile
@@ -16,7 +16,10 @@ else
 endif
 export RUBYLIB RUBY_VERSION
 
-models := ThreadPool ThreadSpawn Revactor Rev EventMachine
+models := ThreadPool ThreadSpawn Rev EventMachine
+ifeq ($(RUBY_VERSION),1.9.1) # 1.9.2-preview1 was broken
+  models += Revactor
+endif
 all_models := $(models) Base
 
 T = $(wildcard t[0-9][0-9][0-9][0-9]-*.sh)