replace boost::ifind_first with std::ranges::search
Use a custom case-insensitive search to remove Boost dependency and
reduce compilation memory usage, keeping original string replacement
behavior.
Change-Id: I5778b208dfdb0082515e92f7bda335beb94c21cb
Signed-off-by: George Liu <liuxiwei@ieisystem.com>
diff --git a/test/meson.build b/test/meson.build
index a22fd31..50f0901 100644
--- a/test/meson.build
+++ b/test/meson.build
@@ -54,3 +54,14 @@
         link_with: gpio_presence_lib,
     ),
 )
+
+test(
+    'test_utils',
+    executable(
+        'test_utils',
+        'test_utils.cpp',
+        '../src/utils.cpp',
+        include_directories: test_include_dir,
+        dependencies: [gtest, phosphor_logging_dep],
+    ),
+)