From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.0 required=3.0 tests=ALL_TRUSTED,BAYES_00 shortcircuit=no autolearn=ham autolearn_force=no version=3.4.0 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 334C21FEB3; Mon, 9 Jan 2017 19:45:27 +0000 (UTC) Date: Mon, 9 Jan 2017 19:45:27 +0000 From: Eric Wong To: rainbows-public@bogomips.org Cc: alex0375@gmail.com Subject: [PATCH 1/2] tests: re-enable EventMachine tests, again Message-ID: <20170109194527.GA16691@starla> References: <20170109194337.GA16111@starla> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20170109194337.GA16111@starla> List-Id: Based on activity in , EventMachine seems to be maintained, again, so resume testing our integration tests. --- t/GNUmakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/GNUmakefile b/t/GNUmakefile index 97b1985..9ead6ee 100644 --- a/t/GNUmakefile +++ b/t/GNUmakefile @@ -41,6 +41,7 @@ ifeq ($(RUBY_ENGINE),ruby) endif models += FiberSpawn models += FiberPool + models += EventMachine RUBY_LE_2_1 := $(shell $(RUBY) -e 'puts(RUBY_VERSION.to_f <= 2.1)') ifeq ($(RUBY_LE_2_1), true) @@ -48,7 +49,6 @@ ifeq ($(RUBY_ENGINE),ruby) models += CoolioThreadPool models += CoolioThreadSpawn models += CoolioFiberSpawn - models += EventMachine models += NeverBlock endif endif -- EW