-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add gh #78 : Adding tests in ut-core to support multiple inputs
- Loading branch information
Showing
4 changed files
with
78 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
UT_CONTROL_PROJECT_VERSION="1.6.1" # Fixed version, #TODO: change to 1.6.2 once ut-control is merged | ||
|
||
# Clone the Unit Test Requirements | ||
[email protected]:rdkcentral/ut-control.git | ||
|
@@ -85,6 +85,7 @@ 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 | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
profile: DUMMY_PROFILE # Dummy string value | ||
hal version: X.X.X # Dummy string value | ||
components: # Array of dummy components | ||
- name: ComponentManager1 # Dummy component object begins | ||
interfaceVersion: X # Dummy integer value | ||
ResourceList1: # Dummy resource list | ||
- id: 0 # Dummy resource object begins | ||
dummyCapabilities: # Array of dummy capabilities | ||
- DUMMY_CAPABILITY_1 | ||
- DUMMY_CAPABILITY_2 | ||
- DUMMY_CAPABILITY_3 | ||
- DUMMY_CAPABILITY_4 | ||
supportsFeatureX: true | ||
- id: 1 | ||
dummyCapabilities: | ||
- DUMMY_CAPABILITY_1 | ||
- DUMMY_CAPABILITY_2 | ||
- DUMMY_CAPABILITY_3 | ||
- DUMMY_CAPABILITY_4 | ||
supportsFeatureX: true | ||
- name: ComponentManager2 # Another dummy component | ||
interfaceVersion: X | ||
platformCapabilities: | ||
- supportsFeatureY: false | ||
sampleRateHz: 00000 | ||
pcmFormat: DUMMY_FORMAT | ||
supportsAdditionalFormat: false | ||
ResourceList2: | ||
- id: 0 | ||
- id: 1 | ||
- name: ComponentManager3 | ||
interfaceVersion: X | ||
supportedModes: | ||
- DUMMY_MODE | ||
ResourceList3: | ||
- id: 0 | ||
dummyCapabilities: | ||
- capability: DUMMY_CODEC_1 | ||
maxFrameRate: XX | ||
maxFrameWidth: XXXX | ||
maxFrameHeight: XXXX | ||
- capability: DUMMY_CODEC_2 | ||
maxFrameRate: XX | ||
maxFrameWidth: XXXX | ||
maxFrameHeight: XXXX | ||
supportedRanges: | ||
- RANGE_1 | ||
- RANGE_2 | ||
- RANGE_3 | ||
supportsFeatureZ: true | ||
- id: 1 | ||
dummyCapabilities: | ||
- capability: DUMMY_CODEC_1 | ||
maxFrameRate: XX | ||
maxFrameWidth: XXXX | ||
maxFrameHeight: XXXX | ||
supportedRanges: | ||
- RANGE_1 | ||
supportsFeatureZ: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters