Skip to content

Commit

Permalink
gh #100 dsVideoPort set/Get Allm enable status
Browse files Browse the repository at this point in the history
* updated UT_LOG to UT_LOG_INFO
  • Loading branch information
akhilbhas committed Dec 20, 2024
1 parent 92663c9 commit 7f514d6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/test_l1_dsVideoPort.c
Original file line number Diff line number Diff line change
Expand Up @@ -5052,7 +5052,7 @@ void test_l1_dsVideoPort_negative_dsGetAllmEnabled(void) {
*/
void test_l1_dsVideoPort_positive_dsSetAllmEnabled(void) {
gTestID = 81;
UT_LOG("\n In %s [%02d%03d]\n", __FUNCTION__, gTestGroup, gTestID);
UT_LOG_INFO("\n In %s [%02d%03d]\n", __FUNCTION__, gTestGroup, gTestID);

dsError_t status = dsERR_NONE;
intptr_t handle = 0;
Expand Down Expand Up @@ -5096,7 +5096,7 @@ void test_l1_dsVideoPort_positive_dsSetAllmEnabled(void) {
status = dsVideoPortTerm();
UT_ASSERT_EQUAL_FATAL(status, dsERR_NONE);

UT_LOG("\n Out %s\n", __FUNCTION__);
UT_LOG_INFO("\n Out %s\n", __FUNCTION__);
}

/**
Expand Down Expand Up @@ -5126,7 +5126,7 @@ void test_l1_dsVideoPort_positive_dsSetAllmEnabled(void) {
*/
void test_l1_dsVideoPort_negative_dsSetAllmEnabled(void) {
gTestID = 82;
UT_LOG("\n In %s [%02d%03d]\n", __FUNCTION__, gTestGroup, gTestID);
UT_LOG_INFO("\n In %s [%02d%03d]\n", __FUNCTION__, gTestGroup, gTestID);

dsError_t status = dsERR_NONE;
intptr_t handle = 0;
Expand Down Expand Up @@ -5170,7 +5170,7 @@ void test_l1_dsVideoPort_negative_dsSetAllmEnabled(void) {
UT_ASSERT_EQUAL(status, dsERR_OPERATION_NOT_SUPPORTED);
}

UT_LOG("\n Out %s\n", __FUNCTION__);
UT_LOG_INFO("\n Out %s\n", __FUNCTION__);
}

static UT_test_suite_t * pSuite = NULL;
Expand Down

0 comments on commit 7f514d6

Please sign in to comment.