test: Unify naming of configurations in tests
Name all instances of CameraConfiguration "config", and all instances of StreamConfiguration "cfg" accross all tests. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
This commit is contained in:
parent
3fc0189e20
commit
21e501f810
3 changed files with 22 additions and 22 deletions
|
@ -18,11 +18,11 @@ class ConfigurationDefault : public CameraTest
|
|||
protected:
|
||||
int run()
|
||||
{
|
||||
CameraConfiguration conf;
|
||||
CameraConfiguration config;
|
||||
|
||||
/* Test asking for configuration for a video stream. */
|
||||
conf = camera_->streamConfiguration({ Stream::VideoRecording() });
|
||||
if (!conf.isValid()) {
|
||||
config = camera_->streamConfiguration({ Stream::VideoRecording() });
|
||||
if (!config.isValid()) {
|
||||
cout << "Default configuration invalid" << endl;
|
||||
return TestFail;
|
||||
}
|
||||
|
@ -31,8 +31,8 @@ protected:
|
|||
* Test that asking for configuration for an empty array of
|
||||
* stream usages returns an empty list of configurations.
|
||||
*/
|
||||
conf = camera_->streamConfiguration({});
|
||||
if (conf.isValid()) {
|
||||
config = camera_->streamConfiguration({});
|
||||
if (config.isValid()) {
|
||||
cout << "Failed to retrieve configuration for empty usage list"
|
||||
<< endl;
|
||||
return TestFail;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue