-
Notifications
You must be signed in to change notification settings - Fork 7
gh515 Add dsHost HAL init/term to SOB test suite #516
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -313,9 +313,12 @@ int test_l3_dsHost_register(void) | |
| UT_add_test( pSuite, "Initialize dsHost", test_l3_dsHost_hal_Init); | ||
| UT_add_test( pSuite, "Get CPU Temperature", test_l3_dsHost_hal_get_Temperature); | ||
| UT_add_test( pSuite, "Get SoC ID", test_l3_dsHost_hal_get_SocID); | ||
| UT_add_test( pSuite_SOB_Only, "Get Host EDID", test_l3_dsHost_hal_get_hostEdid); | ||
| UT_add_test( pSuite, "Terminate dsHost", test_l3_dsHost_hal_Term); | ||
|
|
||
| UT_add_test( pSuite_SOB_Only, "Initialize dsHost", test_l3_dsHost_hal_Init); | ||
| UT_add_test( pSuite_SOB_Only, "Get Host EDID", test_l3_dsHost_hal_get_hostEdid); | ||
| UT_add_test( pSuite_SOB_Only, "Terminate dsHost", test_l3_dsHost_hal_Term); | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. VTS L3 tests are independent and will be called from the host test (https://github.com/rdkcentral/rdk-halif-test-device_settings/blob/main/host/tests/L3_TestCases/dsHdmiIn/dsHdmiIn_test11_GetEDIDInfo_Verify.py) to perform the full functionality. The Init and Term are handled in the test script, where the test sequence from init to termination is defined. I don't see why you need to add it specifically here, instead of running the tests from the test folder. |
||
|
|
||
| return 0; | ||
| } | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What does SOB mean? Since this is an L3 test, the order of test cases doesn’t matter because the host/Python script controls the execution sequence.