From patchwork Thu Aug 16 06:00:30 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Amitay Isaacs X-Patchwork-Id: 958117 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 41rbKm4c5Fz9s4Z for ; Thu, 16 Aug 2018 16:00:44 +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="c/nilyz7"; 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 41rbKm1CqgzDrDF for ; Thu, 16 Aug 2018 16:00:44 +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="c/nilyz7"; 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 41rbKY0Vz6zDqgF for ; Thu, 16 Aug 2018 16:00:33 +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="c/nilyz7"; 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 41rbKX3YpNz9s5b; Thu, 16 Aug 2018 16:00:32 +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=1534399232; bh=p8N/dD8vHo9FynY6kMSKjuPLS+qO17N/sRLgt/UcGWQ=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=c/nilyz7qMnEA1i1bZiEdgRwqZzeOMxo92i2gFM+2Sx6+kwBjMwz/ExhwmjqOnKWI sTY2PJbmNnb0HxBknSRK3/M7DTtIhzlHDtKidDD0VjUSlBRlwVEAQ4I3gPqvRlNnQT QE1jwgKKZ2ywhcP8Uxlz1gtQUPzmjnWJbE/UUsy8Qw2NhqKPTk3ZpcUr1wGhydacEU JUdJOVQGo5mMRX7R4cDglsnblo6sCMnZ+CR8HOdPCJbjOK7MxGIk6Kv8RvXzPxwXmy Ikw3OvwkvYiK3AXiI5kMowI4aDKhWVc9xwaBrkZMsGyGNc3ioJbfonduu+1EFea9HP 2/KUXmsj+g5nQ== From: Amitay Isaacs To: pdbg@lists.ozlabs.org Date: Thu, 16 Aug 2018 16:00:30 +1000 Message-Id: <20180816060030.1011842-3-amitay@ozlabs.org> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20180816060030.1011842-1-amitay@ozlabs.org> References: <20180816060030.1011842-1-amitay@ozlabs.org> Subject: [Pdbg] [PATCH 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