From 1950efe27b22fa5297367c6afbefaea687fa0efd Mon Sep 17 00:00:00 2001 From: kanjoe24 <165808281+kanjoe24@users.noreply.github.com> Date: Wed, 18 Dec 2024 10:05:51 +0000 Subject: [PATCH] Fix gh #78 : Fix review comments --- build.sh | 3 +-- tests/src/c_source/ut_test_kvp_profile.c | 3 +++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/build.sh b/build.sh index 12c0452..8223fb6 100755 --- a/build.sh +++ b/build.sh @@ -67,7 +67,7 @@ popd > /dev/null # ${MY_DIR} # Therefore in that case it warns you but doesnt' chnage to that version, which could cause your tests to break. # Change this to upgrade your ut-control Major versions. Non ABI Changes 1.x.x are supported, between major revisions -UT_CONTROL_PROJECT_VERSION="1.6.1" # Fixed version, #TODO: change to 1.6.2 once ut-control is merged +UT_CONTROL_PROJECT_VERSION="1.6.2" # Fixed version # Clone the Unit Test Requirements UT_CONTROL_REPO=git@github.com:rdkcentral/ut-control.git @@ -85,7 +85,6 @@ function check_ut_control_revision() echo -e ${RED}--- New Version of ut-control released [${UT_NEXT_VERSION}] consider upgrading ---${NC} fi fi - UT_CONTROL_PROJECT_VERSION=feature/gh62-multiple-profile-input-support echo -e ${YELLOW}ut-control version selected:[${UT_CONTROL_PROJECT_VERSION}]${NC} popd > /dev/null } diff --git a/tests/src/c_source/ut_test_kvp_profile.c b/tests/src/c_source/ut_test_kvp_profile.c index 97251bb..029fd2d 100644 --- a/tests/src/c_source/ut_test_kvp_profile.c +++ b/tests/src/c_source/ut_test_kvp_profile.c @@ -144,7 +144,10 @@ void test_ut_kvp_profile_open( void ) { UT_LOG_STEP( "test_ut_kvp_profile_open - start" ); ut_kvp_profile_open( KVP_VALID_TEST_ASSERT_YAML_FILE ); + UT_LOG_STEP( "ut_kvp_profile_open - %s", KVP_VALID_TEST_ASSERT_YAML_FILE); ut_kvp_profile_open( KVP_VALID_TEST_CONFIG_YAML_FILE ); + UT_LOG_STEP( "ut_kvp_profile_open - %s", KVP_VALID_TEST_CONFIG_YAML_FILE); + ut_kvp_instance_t *pInstance; pInstance = ut_kvp_profile_getInstance();