From patchwork Thu Nov 22 13:10:08 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kieran Bingham X-Patchwork-Id: 7 Return-Path: Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id CFF6C60B12 for ; Thu, 22 Nov 2018 14:10:15 +0100 (CET) Received: from localhost.localdomain (cpc89242-aztw30-2-0-cust488.18-1.cable.virginm.net [86.31.129.233]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 4B11E592; Thu, 22 Nov 2018 14:10:15 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1542892215; bh=63YpMw8iiwGqDMFFEt+RrES01wcae0BXC2VHwZ5cBiM=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=bXFGAaXGcjjoAwszqt57s0knlIxyRFUR3VOw5IgV0zTNM1pYKZJnshOHgCaiJzpSd KGXZyYMoV9Yf2j0RNAE5bKNAI4luW8Ak3HMqMS70aguYMAOWx9DYouUOx02JgjZo5Q 7nG1c+mClOKRrEkXWul9q0AUZMukRe210CdB8AAw= From: Kieran Bingham To: LibCamera Devel Date: Thu, 22 Nov 2018 13:10:08 +0000 Message-Id: <20181122131010.22085-2-kieran.bingham@ideasonboard.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20181122131010.22085-1-kieran.bingham@ideasonboard.com> References: <20181122131010.22085-1-kieran.bingham@ideasonboard.com> Subject: [libcamera-devel] [PATCH 1/3] test: Register the initialisation test with meson X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Nov 2018 13:10:16 -0000 Register the test so that it can integrate with the meson test framework. To execute the test suite, use 'ninja test'. Signed-off-by: Kieran Bingham Reviewed-by: Laurent Pinchart --- test/meson.build | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/meson.build b/test/meson.build index faff4b2d4da4..4f5c7a82e4c4 100644 --- a/test/meson.build +++ b/test/meson.build @@ -1,3 +1,5 @@ test_init = executable('test_init', 'init.cpp', link_with : libcamera, include_directories : inc) + +test('Initialisation test', test_init)