about summary refs log tree commit homepage
diff options
context:
space:
mode:
-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)