Skip to content

Commit

Permalink
Merge branch 'release/3.0.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
hari22yuva committed Jun 28, 2024
2 parents c5880df + 234c77c commit d5274d3
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 6 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,14 @@ All notable changes to this project will be documented in this file. Dates are d

Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).

#### [3.0.0](https://github.com/rdkcentral/rdk-halif-test-device_settings/compare/2.1.0...3.0.0)
#### [3.0.1](https://github.com/rdkcentral/rdk-halif-test-device_settings/compare/3.0.0...3.0.1)

- gh #78 update flag for source and sink [`#79`](https://github.com/rdkcentral/rdk-halif-test-device_settings/pull/79)
- Merge tag '3.0.0' into develop [`1f22556`](https://github.com/rdkcentral/rdk-halif-test-device_settings/commit/1f2255673e2020d6aa1e433c576144e55bd89e3b)

### [3.0.0](https://github.com/rdkcentral/rdk-halif-test-device_settings/compare/2.1.0...3.0.0)

> 28 June 2024
- gh #76 Updated L2 code, README.md,doxygen [`#77`](https://github.com/rdkcentral/rdk-halif-test-device_settings/pull/77)
- gh #23 ds fp test spec & L2 code [`#33`](https://github.com/rdkcentral/rdk-halif-test-device_settings/pull/33)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ This repository contains the Unit Test Suites (L1 & L2) for the following submod
|---|-------------|--------------------|-------------|
|1|Device Settings `HAL`|This document provides specific information on each `DS` sub-module's `APIs` for which tests are written in this module|[`DS` `HAL` Guide](https://github.com/rdkcentral/rdk-halif-device_settings/blob/main/docs/pages/README.md)|
|2|`DS` Audio High-Level Test Spec |`High Level Test Specification` Documentation for `DS` Audio module.|[ds-audio_High-Level_TestSpecification.md]( docs/pages/ds-audio_High-Level_TestSpecification.md)|
|3|`DS` Audio `L2` Low-Level Test Spec |`L2` `Low Level Test Specification` Documentation for `DS` Audio module|[ds-audio_High-Level_TestSpecification.md]( docs/pages/ds-audio_L2_Low-Level_TestSpecification.md)|
|3|`DS` Audio `L2` Low-Level Test Spec |`L2` `Low Level Test Specification` Documentation for `DS` Audio module|[ds-audio_L2_Low-Level_TestSpecification.md]( docs/pages/ds-audio_L2_Low-Level_TestSpecification.md)|
|4|`DS` Video Device High-Level Test Spec |`High Level Test Specification` Documentation for `DS` Video Device module.|[ds-video-device_High-Level_TestSpec.md]( docs/pages/ds-video-device_High-Level_TestSpec.md)|
|5|`DS` Video Device `L2` Low-Level Test Spec |`L2` `Low Level Test Specification` Documentation for `DS` Video Device module|[ds-video-device_L2-Low-Level_TestSpec.md]( docs/pages/ds-video-device_L2-Low-Level_TestSpec.md)|
|6|`DS` Video Port High-Level Test Spec |`High Level Test Specification` Documentation for `DS` Video Port module.|[ds-video-port_High-Level_TestSpec.md]( docs/pages/ds-video-port_High-Level_TestSpec.md)|
Expand Down
8 changes: 4 additions & 4 deletions src/test_l2_dsDisplay.c
Original file line number Diff line number Diff line change
Expand Up @@ -233,21 +233,21 @@ int test_l2_dsDisplay_register(void)

// Create the test suite
if (status == UT_KVP_STATUS_SUCCESS ) {
if (!strncmp(gDeviceType, TEST_TYPE_SOURCE_VALUE, TEST_DS_DEVICE_TYPE_SIZE)) {
if (!strncmp(gDeviceType, TEST_TYPE_SINK_VALUE, TEST_DS_DEVICE_TYPE_SIZE)) {
pSuite = UT_add_suite("[L2 dsDisplay Sink]", NULL, NULL);
if (pSuite == NULL)
{
return -1;
}
source_type = 1;
source_type = 0;
}
else if(!strncmp(gDeviceType, TEST_TYPE_SINK_VALUE, TEST_DS_DEVICE_TYPE_SIZE)) {
else if(!strncmp(gDeviceType, TEST_TYPE_SOURCE_VALUE, TEST_DS_DEVICE_TYPE_SIZE)) {
pSuite = UT_add_suite("[L2 dsDisplay Source ]", NULL, NULL);
if (pSuite == NULL)
{
return -1;
}
source_type = 0;
source_type = 1;
}
else {
UT_LOG_ERROR("Invalid platform type: %s", gDeviceType);
Expand Down

0 comments on commit d5274d3

Please sign in to comment.