about summary refs log tree commit homepage
path: root/test/exec
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2010-06-08 07:03:35 +0000
committerEric Wong <normalperson@yhbt.net>2010-06-08 07:53:17 +0000
commit8b7b52c08ad5a4822c3ea1550c9fccd838696db2 (patch)
tree5f453e4d5b6793ad76b4616603f17993105e7404 /test/exec
parent2760d1e0d459a8e92eadf78cdf9f09d6a3109003 (diff)
downloadunicorn-8b7b52c08ad5a4822c3ea1550c9fccd838696db2.tar.gz
They cannot be worked around, but tickets have been filed
upstream (I still hate all bug trackers besides Debian's).

TCPServer.for_fd (needed for zero-downtime upgrades):
  http://github.com/evanphx/rubinius/issues/354

UnixServer.for_fd (needed for zero-downtime upgrades):
  http://github.com/evanphx/rubinius/issues/355

Signal handling behavior seems broken (OOM or segfaults):
  http://github.com/evanphx/rubinius/issues/356
Diffstat (limited to 'test/exec')
-rw-r--r--test/exec/test_exec.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/exec/test_exec.rb b/test/exec/test_exec.rb
index a51f36d..a42e0ac 100644
--- a/test/exec/test_exec.rb
+++ b/test/exec/test_exec.rb
@@ -20,6 +20,10 @@ unless try_require('rack')
   do_test = false
 end
 
+if ENV['RBX_SKIP']
+  do_test = false
+end
+
 class ExecTest < Test::Unit::TestCase
   trap(:QUIT, 'IGNORE')