From 429513a298389fbcc6655822f71e1db867b15f35 Mon Sep 17 00:00:00 2001 From: Mathieu Kardous Date: Thu, 25 Apr 2024 13:40:48 -0400 Subject: [PATCH] add missing dependency --- src/BUILD.gn | 1 + src/protocols/secure_channel/tests/BUILD.gn | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/BUILD.gn b/src/BUILD.gn index 60ba11c0d28f61..dbefce44929110 100644 --- a/src/BUILD.gn +++ b/src/BUILD.gn @@ -100,6 +100,7 @@ if (chip_build_tests) { "${chip_root}/src/lib/support/tests", "${chip_root}/src/lib/support/tests:tests_nltest", "${chip_root}/src/protocols/secure_channel/tests", + "${chip_root}/src/protocols/secure_channel/tests:tests_nltest", "${chip_root}/src/system/tests", "${chip_root}/src/transport/tests", ] diff --git a/src/protocols/secure_channel/tests/BUILD.gn b/src/protocols/secure_channel/tests/BUILD.gn index b4fed328aeffc7..afebe3cee24aa6 100644 --- a/src/protocols/secure_channel/tests/BUILD.gn +++ b/src/protocols/secure_channel/tests/BUILD.gn @@ -19,9 +19,9 @@ chip_test_suite("tests") { ] } -chip_test_suite_using_nltest("nl_tests") { +chip_test_suite_using_nltest("tests_nltest") { # Renamed ouput during the transition away from nltest - output_name = "nl_libSecureChannelTests" + output_name = "libSecureChannelTestsNL" test_sources = [ "TestCASESession.cpp",