test: camera: Remove test for bad Stream IDs
In preparation of reworking how a default configuration is retrieved from a camera remove test that stream IDs must be valid as the data type passed to Camera::streamConfiguration() will change. This change is in preparation for an invasive change. Signed-off-by: Niklas Söderlund <niklas.soderlund@ragnatech.se> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Jacopo Mondi <jacopo@jmondi.org>
This commit is contained in:
parent
8f08880082
commit
024b4ea514
1 changed files with 0 additions and 13 deletions
|
@ -49,19 +49,6 @@ protected:
|
|||
return TestFail;
|
||||
}
|
||||
|
||||
/*
|
||||
* Test that asking for configuration for an array of bad streams
|
||||
* returns an empty list of configurations.
|
||||
*/
|
||||
Stream *stream_bad = reinterpret_cast<Stream *>(0xdeadbeef);
|
||||
std::set<Stream *> streams_bad = { stream_bad };
|
||||
conf = camera_->streamConfiguration(streams_bad);
|
||||
if (!conf.empty()) {
|
||||
cout << "Failed to retrieve configuration for bad streams"
|
||||
<< endl;
|
||||
return TestFail;
|
||||
}
|
||||
|
||||
return TestPass;
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue