diff options
author | Barnabás Pőcze <pobrn@protonmail.com> | 2024-12-18 19:08:05 +0100 |
---|---|---|
committer | Barnabás Pőcze <pobrn@protonmail.com> | 2025-02-27 17:31:04 +0100 |
commit | 6719ae34cc1db58e720b7a5ec2498e3f2a81c681 (patch) | |
tree | c423e5a605e1cfd195caf5bcda0b34f992fe91b9 /src/apps | |
parent | 8c6d0106d03f6905c92a18c4485f233a4142de39 (diff) |
apps: lc-compliance: Put tests into anonymous namespace
There is no reason for these symbols to be global.
Signed-off-by: Barnabás Pőcze <pobrn@protonmail.com>
Reviewed-by: Jacopo Mondi <jacopo.mondi@ideasonboard.com>
Reviewed-by: Paul Elder <paul.elder@ideasonboard.com>
Diffstat (limited to 'src/apps')
-rw-r--r-- | src/apps/lc-compliance/tests/capture_test.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/apps/lc-compliance/tests/capture_test.cpp b/src/apps/lc-compliance/tests/capture_test.cpp index ad3a1da2..db196a94 100644 --- a/src/apps/lc-compliance/tests/capture_test.cpp +++ b/src/apps/lc-compliance/tests/capture_test.cpp @@ -14,6 +14,8 @@ #include "environment.h" +namespace { + using namespace libcamera; const std::vector<int> NUMREQUESTS = { 1, 2, 3, 5, 8, 13, 21, 34, 55, 89 }; @@ -134,3 +136,5 @@ INSTANTIATE_TEST_SUITE_P(CaptureTests, testing::Combine(testing::ValuesIn(ROLES), testing::ValuesIn(NUMREQUESTS)), SingleStream::nameParameters); + +} /* namespace */ |