diff options
author | Kieran Bingham <kieran.bingham@ideasonboard.com> | 2019-02-13 17:03:00 +0000 |
---|---|---|
committer | Kieran Bingham <kieran.bingham@ideasonboard.com> | 2019-02-13 17:27:33 +0000 |
commit | ff4e8823992cba2c599d26add3087cc28410fc27 (patch) | |
tree | 431ed6065ce82a0dc7006ba0abb3a414daf34332 /test/v4l2_device/stream_on_off.cpp | |
parent | 819eb422b39afbfb618ed3b1618cf03bebec1abd (diff) |
test: v4l2_device: Rename dev_ to capture_
Change the variable name globally throughout the tests.
Repair the V4L2DeviceTest constructor style, as checkstyle complained.
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Diffstat (limited to 'test/v4l2_device/stream_on_off.cpp')
-rw-r--r-- | test/v4l2_device/stream_on_off.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/v4l2_device/stream_on_off.cpp b/test/v4l2_device/stream_on_off.cpp index 861d8d69..ea1b3f5b 100644 --- a/test/v4l2_device/stream_on_off.cpp +++ b/test/v4l2_device/stream_on_off.cpp @@ -16,15 +16,15 @@ protected: pool_.createBuffers(bufferCount); - int ret = dev_->exportBuffers(&pool_); + int ret = capture_->exportBuffers(&pool_); if (ret) return TestFail; - ret = dev_->streamOn(); + ret = capture_->streamOn(); if (ret) return TestFail; - ret = dev_->streamOff(); + ret = capture_->streamOff(); if (ret) return TestFail; |