From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1368114-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E39BA15808B for <garchives@archives.gentoo.org>; Wed, 16 Feb 2022 18:57:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2D5EFE0844; Wed, 16 Feb 2022 18:57:15 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 19AC3E0844 for <gentoo-commits@lists.gentoo.org>; Wed, 16 Feb 2022 18:57:15 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2A22A343488 for <gentoo-commits@lists.gentoo.org>; Wed, 16 Feb 2022 18:57:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6D8B62DB for <gentoo-commits@lists.gentoo.org>; Wed, 16 Feb 2022 18:57:12 +0000 (UTC) From: "Matthew Smith" <matthew@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matthew Smith" <matthew@gentoo.org> Message-ID: <1645037816.7fafa36104e3d88ab6df5bda29cc019f729dfac8.matthew@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/websocket/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emacs/websocket/websocket-1.12.ebuild app-emacs/websocket/websocket-1.13.ebuild X-VCS-Directories: app-emacs/websocket/ X-VCS-Committer: matthew X-VCS-Committer-Name: Matthew Smith X-VCS-Revision: 7fafa36104e3d88ab6df5bda29cc019f729dfac8 X-VCS-Branch: master Date: Wed, 16 Feb 2022 18:57:12 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 5e16877d-86e7-493c-8831-94ee20d655cb X-Archives-Hash: ffdfb3fd6099f2e483068e8757f1b85a commit: 7fafa36104e3d88ab6df5bda29cc019f729dfac8 Author: Matthew Smith <matthew <AT> gentoo <DOT> org> AuthorDate: Wed Feb 16 18:56:03 2022 +0000 Commit: Matthew Smith <matthew <AT> gentoo <DOT> org> CommitDate: Wed Feb 16 18:56:56 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7fafa361 app-emacs/websocket: add missing || die after tests Signed-off-by: Matthew Smith <matthew <AT> gentoo.org> app-emacs/websocket/websocket-1.12.ebuild | 4 ++-- app-emacs/websocket/websocket-1.13.ebuild | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app-emacs/websocket/websocket-1.12.ebuild b/app-emacs/websocket/websocket-1.12.ebuild index c512baa9f3c7..b70eabe48fad 100644 --- a/app-emacs/websocket/websocket-1.12.ebuild +++ b/app-emacs/websocket/websocket-1.12.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -23,7 +23,7 @@ src_compile() { src_test() { ${EMACS} ${EMACSFLAGS} -L . -l websocket-test \ - -f ert-run-tests-batch-and-exit + -f ert-run-tests-batch-and-exit || die "tests failed" } src_install() { diff --git a/app-emacs/websocket/websocket-1.13.ebuild b/app-emacs/websocket/websocket-1.13.ebuild index d222795cdb0b..f9c4df32459b 100644 --- a/app-emacs/websocket/websocket-1.13.ebuild +++ b/app-emacs/websocket/websocket-1.13.ebuild @@ -23,7 +23,7 @@ src_compile() { src_test() { ${EMACS} ${EMACSFLAGS} -L . -l websocket-test \ - -f ert-run-tests-batch-and-exit + -f ert-run-tests-batch-and-exit || die "tests failed" } src_install() {