diff options
author | Niklas Söderlund <niklas.soderlund@ragnatech.se> | 2019-04-29 19:29:35 +0200 |
---|---|---|
committer | Niklas Söderlund <niklas.soderlund@ragnatech.se> | 2019-05-17 20:35:09 +0200 |
commit | 9c1fe51ebc33684a2205dfb92dde469f436c855c (patch) | |
tree | 5e492963bc10daebca475e6b6f8d0ccc3d3b05f5 /test/media_device/media_device_print_test.cpp | |
parent | 9654d1f64a216214304706802fab19a71eaf5cf1 (diff) |
test: media_device: Add test for acquire() and release()
The interfaces MediaDevice::{open,close}() are about to be made private,
replace them with a test of MediaDevice::{acquire,release}() instead.
The new test will implicitly tests the open() and close() methods as
they are about to be move inside acquire() and release() which will
remain public.
Signed-off-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'test/media_device/media_device_print_test.cpp')
-rw-r--r-- | test/media_device/media_device_print_test.cpp | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/test/media_device/media_device_print_test.cpp b/test/media_device/media_device_print_test.cpp index ceffd538..30d929b8 100644 --- a/test/media_device/media_device_print_test.cpp +++ b/test/media_device/media_device_print_test.cpp @@ -113,17 +113,6 @@ int MediaDevicePrintTest::testMediaDevice(const string deviceNode) MediaDevice dev(deviceNode); int ret; - /* Fuzzy open/close sequence. */ - ret = dev.open(); - if (ret) - return ret; - - ret = dev.open(); - if (!ret) - return ret; - - dev.close(); - ret = dev.populate(); if (ret) return ret; |