From patchwork Wed Feb 13 17:14:50 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kieran Bingham X-Patchwork-Id: 578 Return-Path: Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id A26B5610AE for ; Wed, 13 Feb 2019 18:14:57 +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 166DA304; Wed, 13 Feb 2019 18:14:57 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1550078097; bh=RVayuXcZneURC/kRtmPMIfPrdPptFwu3GAHRpMMjEq4=; h=From:To:Cc:Subject:Date:From; b=iOr6rMB9bRg4jZBPvG5UUw5unBpoTAdNtvbNhfmjx8B/sVz+QbCq1yjwRCSiXo62s 4eTc0lOpEoi9eg87pM+SCdUY/eEpiI9iolS71oP8PdMek02LIEMT43evawUOwryYYI Eb2B8zNzbqDunuupK8PLoS9p0+xSGGkYVLLvCGLM= From: Kieran Bingham To: LibCamera Devel Date: Wed, 13 Feb 2019 17:14:50 +0000 Message-Id: <20190213171453.13852-1-kieran.bingham@ideasonboard.com> X-Mailer: git-send-email 2.19.1 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH v3 0/3] libcamera: test: buffer_sharing 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: Wed, 13 Feb 2019 17:14:57 -0000 A v3 of *only* the buffer sharing test along with two preceding patches to clean up the base V4L2DeviceTest class. Kieran Bingham (3): test: v4l2_device: Rename dev_ to capture_ test: v4l2_device: release capture device resources test: v4l2_device: Provide buffer sharing test test/v4l2_device/buffer_sharing.cpp | 187 ++++++++++++++++++++++++++ test/v4l2_device/capture_async.cpp | 12 +- test/v4l2_device/double_open.cpp | 4 +- test/v4l2_device/meson.build | 1 + test/v4l2_device/request_buffers.cpp | 2 +- test/v4l2_device/stream_on_off.cpp | 6 +- test/v4l2_device/v4l2_device_test.cpp | 12 +- test/v4l2_device/v4l2_device_test.h | 7 +- 8 files changed, 213 insertions(+), 18 deletions(-) create mode 100644 test/v4l2_device/buffer_sharing.cpp