From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.2 required=3.0 tests=ALL_TRUSTED,AWL,BAYES_00, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF shortcircuit=no autolearn=ham autolearn_force=no version=3.4.6 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id D427F1F47C for ; Sun, 8 Jan 2023 21:44:43 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=80x24.org; s=selector1; t=1673214283; bh=VKUgpJ/6LiWBwIR2jkPPJxij+jxnoaCg2dsnI4m3nkw=; h=From:To:Subject:Date:From; b=FnhJwg4/Nvxy5csNiTGj1U6qeHgnLJg0vKeVKrz2TEkdJ1ReaElt9PPQND4ewoq8A kuIwqyN5J806JvB6sjPLY0dnv3XqTy+tuVd4Sxz+oqSoKqSwCnueeGW45IHqELmcOh StcWHYvL87CVJb6dVV62fADovYugr2NwrNjOD11w= From: Eric Wong To: mwrap-public@80x24.org Subject: [PATCH] Rakefile: fix Ruby-only test case name Date: Sun, 8 Jan 2023 21:44:44 +0000 Message-Id: <20230108214444.412795-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index cf4311e..efb62b1 100644 --- a/Rakefile +++ b/Rakefile @@ -8,7 +8,7 @@ rescue LoadError warn 'rake-compiler not available, cross compiling disabled' end -Rake::TestTask.new(:test) +Rake::TestTask.new('test-ruby') task 'test-ruby' => :compile task :default => :compile