From b88e6602e8f59ab611eaa83f0f5a0e4f1047a950 Mon Sep 17 00:00:00 2001 From: maheshtalewad Date: Thu, 5 Oct 2023 15:15:43 +0300 Subject: [PATCH] unit/test-micp.c: MICP-MICS unit test case implementation -Added MICS and MICP Unit test cases in a single file[test-micp.c]. -Fixed the issue that occurred while running all the Unit test cases at a time. -Tested all Unit test cases and working fine. --- Makefile.am | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Makefile.am b/Makefile.am index cc2e454f7..8d35dbb55 100644 --- a/Makefile.am +++ b/Makefile.am @@ -595,6 +595,12 @@ unit_test_bap_SOURCES = unit/test-bap.c unit_test_bap_LDADD = src/libshared-glib.la \ lib/libbluetooth-internal.la $(GLIB_LIBS) +unit_tests += unit/test-micp + +unit_test_micp_SOURCES = unit/test-micp.c +unit_test_micp_LDADD = src/libshared-glib.la \ + lib/libbluetooth-internal.la $(GLIB_LIBS) + unit_tests += unit/test-bass unit_test_bass_SOURCES = unit/test-bass.c $(btio_sources) -- 2.47.3