summaryrefslogtreecommitdiff
path: root/test/controls
diff options
context:
space:
mode:
Diffstat (limited to 'test/controls')
-rw-r--r--test/controls/control_info_map.cpp (renamed from test/controls/control_info.cpp)18
-rw-r--r--test/controls/meson.build8
2 files changed, 13 insertions, 13 deletions
diff --git a/test/controls/control_info.cpp b/test/controls/control_info_map.cpp
index fa9d7bae..eeb702db 100644
--- a/test/controls/control_info.cpp
+++ b/test/controls/control_info_map.cpp
@@ -36,41 +36,41 @@ protected:
int run() override
{
- const ControlInfoMap &info = camera_->controls();
+ const ControlInfoMap &infoMap = camera_->controls();
/* Test looking up a valid control by ControlId. */
- if (info.count(&controls::Brightness) != 1) {
+ if (infoMap.count(&controls::Brightness) != 1) {
cerr << "count() on valid control failed" << endl;
return TestFail;
}
- if (info.find(&controls::Brightness) == info.end()) {
+ if (infoMap.find(&controls::Brightness) == infoMap.end()) {
cerr << "find() on valid control failed" << endl;
return TestFail;
}
- info.at(&controls::Brightness);
+ infoMap.at(&controls::Brightness);
/* Test looking up a valid control by numerical ID. */
- if (info.count(controls::Brightness.id()) != 1) {
+ if (infoMap.count(controls::Brightness.id()) != 1) {
cerr << "count() on valid ID failed" << endl;
return TestFail;
}
- if (info.find(controls::Brightness.id()) == info.end()) {
+ if (infoMap.find(controls::Brightness.id()) == infoMap.end()) {
cerr << "find() on valid ID failed" << endl;
return TestFail;
}
- info.at(controls::Brightness.id());
+ infoMap.at(controls::Brightness.id());
/* Test looking up an invalid control by numerical ID. */
- if (info.count(12345) != 0) {
+ if (infoMap.count(12345) != 0) {
cerr << "count() on invalid ID failed" << endl;
return TestFail;
}
- if (info.find(12345) != info.end()) {
+ if (infoMap.find(12345) != infoMap.end()) {
cerr << "find() on invalid ID failed" << endl;
return TestFail;
}
diff --git a/test/controls/meson.build b/test/controls/meson.build
index f0850df2..16a7f33f 100644
--- a/test/controls/meson.build
+++ b/test/controls/meson.build
@@ -1,8 +1,8 @@
control_tests = [
- [ 'control_info', 'control_info.cpp' ],
- [ 'control_list', 'control_list.cpp' ],
- [ 'control_range', 'control_range.cpp' ],
- [ 'control_value', 'control_value.cpp' ],
+ [ 'control_info_map', 'control_info_map.cpp' ],
+ [ 'control_list', 'control_list.cpp' ],
+ [ 'control_range', 'control_range.cpp' ],
+ [ 'control_value', 'control_value.cpp' ],
]
foreach t : control_tests