From patchwork Mon Aug 13 03:05:03 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Amitay Isaacs X-Patchwork-Id: 956790 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.ozlabs.org (lists.ozlabs.org [203.11.71.2]) (using TLSv1.2 with cipher ADH-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 41pgZr4P7Bz9rvt for ; Mon, 13 Aug 2018 13:05:24 +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="TUiUwrgO"; 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 41pgZr2S7dzF0Ws for ; Mon, 13 Aug 2018 13:05:24 +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="TUiUwrgO"; dkim-atps=neutral X-Original-To: pdbg@lists.ozlabs.org Delivered-To: pdbg@lists.ozlabs.org Received: from ozlabs.org (bilbo.ozlabs.org [IPv6:2401:3900:2:1::2]) (using TLSv1.2 with cipher ADH-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by lists.ozlabs.org (Postfix) with ESMTPS id 41pgZd53dRzF0Rr for ; Mon, 13 Aug 2018 13:05:13 +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="TUiUwrgO"; 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 41pgZd1z4Wz9rxx; Mon, 13 Aug 2018 13:05:13 +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=1534129513; bh=MP150/abv/NI8F4UvZFigXjjeOpRAANrZQ0BAFGDKZI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=TUiUwrgOBpJOMx9NAKWqJEew6cBdJdHTDiQBQMQfzF/4rbfdi/v9tHcTsQURIBQHb lTu7suGHCst9MbIHHuqzkU8lULzEEOCYYkGsiBfRr4VA/n2TBUh0lhpIAFeWY3MZdj /bYPPCIURxBobZ+nF0VECAUEOiWrDTqkQsHolX6uin32DOp4e6VraJLplHX6RWbwwb YBwEI9wOpeBdz4CLBtqCXfsG90VHaKnesdwJUXltzIpXqu8JRGw+nsDumSpqlVY3Q2 3nTGK0crxWHVANpbyeup2YD3VIRYGm4tfy9mI8Sfxdl66ssktxeNNpBmO5LplpUPZM pLuxlTne0gp2Q== From: Amitay Isaacs To: pdbg@lists.ozlabs.org Date: Mon, 13 Aug 2018 13:05:03 +1000 Message-Id: <20180813030506.429060-2-amitay@ozlabs.org> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20180813030506.429060-1-amitay@ozlabs.org> References: <20180813030506.429060-1-amitay@ozlabs.org> Subject: [Pdbg] [PATCH 1/4] configure: Enable tests 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 | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index e2783f1..f6b8195 100644 --- a/Makefile.am +++ b/Makefile.am @@ -4,7 +4,9 @@ AM_MAKEFLAGS = --no-print-directory GIT_SHA1 ?= `git --work-tree=$(top_srcdir) --git-dir=$(top_srcdir)/.git describe --always --long --dirty 2>/dev/null || echo unknown` bin_PROGRAMS = pdbg -noinst_PROGRAMS = optcmd_test +check_PROGRAMS = optcmd_test + +TESTS = optcmd_test ACLOCAL_AMFLAGS = -Im4 AM_CFLAGS = -I$(top_srcdir)/ccan/array_size -Wall -Werror -O2