-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
gh #44 Updated test cases to use cec adaptor
- Loading branch information
1 parent
797aca3
commit 329c86f
Showing
7 changed files
with
112 additions
and
52 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
{ | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "Python Debugger: Current File", | ||
"type": "debugpy", | ||
"request": "launch", | ||
"program": "${file}", | ||
"args": [ "--config", "example_rack_config.yml", | ||
"--deviceConfig", "deviceConfig.yml"], | ||
"console": "integratedTerminal" | ||
}, | ||
{ | ||
"name": "C/C++ Runner: Debug Session", | ||
"type": "cppdbg", | ||
"request": "launch", | ||
"stopAtEntry": false, | ||
"externalConsole": false, | ||
"cwd": "${workspaceFolder}", | ||
"program": "${workspaceFolder}/bin/hal_test", | ||
"environment": [ {"name": "LD_LIBRARY_PATH", "value":"${workspaceFolder}/bin/"} ], | ||
"args": [ "-l", "${workspaceFolder}/logs/", "-p", "${workspaceFolder}/profiles/sink/Sink_AudioSettings.yaml" ], | ||
"MIMode": "gdb", | ||
"miDebuggerPath": "gdb", | ||
"setupCommands": [ | ||
{ | ||
"description": "Enable pretty-printing for gdb", | ||
"text": "-enable-pretty-printing", | ||
"ignoreFailures": 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
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
hdmiCEC: | ||
test01_TransmitSingleStandbyCommandandValidateAck: | ||
- command: "0x36" # Standby | ||
responses: | ||
- type: "power_status" | ||
loop_devices: true # Apply this response to all devices in the device map | ||
payload: "[:sender]:90:[:power_status]" # Response pattern with placeholders | ||
description: "Devices report their power status" | ||
- command: "0x8F" # Request Power Status | ||
responses: | ||
- type: "power_status_response" | ||
loop_devices: true # Apply this response to all devices in the device map | ||
payload: "[:sender]:90:[:power_status]" # Response pattern with placeholders | ||
description: "Devices respond with their current power status" |
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
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