From patchwork Tue Aug 21 07:54:42 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Amitay Isaacs X-Patchwork-Id: 960140 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.ozlabs.org (lists.ozlabs.org [IPv6:2401:3900:2:1::3]) (using TLSv1.2 with cipher ADH-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 41vjdK3XClz9s7X for ; Tue, 21 Aug 2018 17:55:01 +1000 (AEST) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=ozlabs.org Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; secure) header.d=ozlabs.org header.i=@ozlabs.org header.b="NIUlDaWV"; dkim-atps=neutral Received: from lists.ozlabs.org (lists.ozlabs.org [IPv6:2401:3900:2:1::3]) by lists.ozlabs.org (Postfix) with ESMTP id 41vjdK0jBVzF162 for ; Tue, 21 Aug 2018 17:55:01 +1000 (AEST) Authentication-Results: lists.ozlabs.org; dmarc=none (p=none dis=none) header.from=ozlabs.org Authentication-Results: lists.ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; secure) header.d=ozlabs.org header.i=@ozlabs.org header.b="NIUlDaWV"; dkim-atps=neutral X-Original-To: pdbg@lists.ozlabs.org Delivered-To: pdbg@lists.ozlabs.org Received: from ozlabs.org (bilbo.ozlabs.org [203.11.71.1]) (using TLSv1.2 with cipher ADH-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by lists.ozlabs.org (Postfix) with ESMTPS id 41vjd33WPDzF0ph for ; Tue, 21 Aug 2018 17:54:47 +1000 (AEST) Authentication-Results: lists.ozlabs.org; dmarc=none (p=none dis=none) header.from=ozlabs.org Authentication-Results: lists.ozlabs.org; dkim=pass (2048-bit key; secure) header.d=ozlabs.org header.i=@ozlabs.org header.b="NIUlDaWV"; dkim-atps=neutral Received: from authenticated.ozlabs.org (localhost [127.0.0.1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPSA id 41vjd31NM1z9s7c; Tue, 21 Aug 2018 17:54:47 +1000 (AEST) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=ozlabs.org DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ozlabs.org; s=201707; t=1534838087; bh=p8N/dD8vHo9FynY6kMSKjuPLS+qO17N/sRLgt/UcGWQ=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=NIUlDaWVaTIfN9yxsXSw/6tWqByG+Q+nmNf4KvCkMmfXsCQ+mLuO9hnHpvLgwiC8A ldLC/Wc690j8xSKKB1ytokbO1nHzP0a8+56ozXmDDXhZ/CDswaIRZEOvAz+TrR7Oh7 xaRBeK38fwl55D81F/Tk+hxIj1n8mM1oZclP38TDAq8MabobVZtRryU6X6YhxoO76s sKdKhYyKOByLx9iFPTW8J5GVw4h8kQm8hhdHo2CggHaBjNMyy13lYk2L5N8zrn2RAJ hT9MkO/xJVbhHfkMOmAp9qriboGPZYwC18lo7WLwpMC/GsxCgvtdmh+/+KtkcyTg4+ SHdbS7R1CwZdg== From: Amitay Isaacs To: pdbg@lists.ozlabs.org Date: Tue, 21 Aug 2018 17:54:42 +1000 Message-Id: <20180821075442.1665217-4-amitay@ozlabs.org> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20180821075442.1665217-1-amitay@ozlabs.org> References: <20180821075442.1665217-1-amitay@ozlabs.org> Subject: [Pdbg] [PATCH v2 3/3] build: Add dummy target to build test binaries X-BeenThere: pdbg@lists.ozlabs.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: "mailing list for https://github.com/open-power/pdbg development" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Amitay Isaacs MIME-Version: 1.0 Errors-To: pdbg-bounces+incoming=patchwork.ozlabs.org@lists.ozlabs.org Sender: "Pdbg" Signed-off-by: Amitay Isaacs --- Makefile.am | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile.am b/Makefile.am index 9d85e9c..df3bbcd 100644 --- a/Makefile.am +++ b/Makefile.am @@ -17,6 +17,8 @@ PDBG_TESTS = \ TESTS = $(libpdbg_tests) optcmd_test $(PDBG_TESTS) +test: $(libpdbg_tests) + TEST_EXTENSIONS = .sh SH_LOG_DRIVER = $(SHELL) $(srcdir)/tests/run_test.sh