-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add LED manifest entries for interactive LED checks (BugFix) (#1385)
* Add manifest for interactive LED jobs Instead of asking the tester to manually skip tests when a device does not have a given LED (for instance no Microphone Mute LED), this commit introduces manifest entries for all the related LED jobs. This way, the tester defines what LEDs the device has before running the tests, and tests that are not required due to a lack of specific LED are automatically skipped. * Modify LED manifest used for GPIO/sysfs controlled LEDs jobs The generic "has_led_indicator" manifest entry, which originally came from the CE-OEM provider for IoT testing, is renamed as "has_led_gpio_sysfs" to better reflect the need for IoT projects. It is grouped with other LED-related manifest entries by using the same prompt. * Add led/wireless to test plans and remove redundant LED jobs led/wlan, led/wlan-disabled and led/bluetooth are all testing a subset of what led/wireless is testing. This commit - removes these jobs - replaces their calls with led/wireless in related test plans * Add manifest for suspend LED Based on feedback from QA team, add a manifest for the suspend LED and use it in the led/suspend job. * Make sure device has a power LED before running the led/power-blink test
- Loading branch information
Showing
9 changed files
with
127 additions
and
97 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
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 |
---|---|---|
@@ -1,4 +1,65 @@ | ||
unit: manifest entry | ||
id: has_led_indicator | ||
_name: Does device supported LED indicator? | ||
value-type: bool | ||
id: has_led_gpio_sysfs | ||
_name: LEDs controlled via GPIO or sysfs | ||
_prompt: Does this machine have the following LED indicators? | ||
value-type: bool | ||
|
||
unit: manifest entry | ||
id: has_led_power | ||
_name: Power | ||
_prompt: Does this machine have the following LED indicators? | ||
value-type: bool | ||
|
||
unit: manifest entry | ||
id: has_led_suspend | ||
_name: Suspend | ||
_prompt: Does this machine have the following LED indicators? | ||
value-type: bool | ||
|
||
unit: manifest entry | ||
id: has_led_caps_lock | ||
_name: Caps lock | ||
_prompt: Does this machine have the following LED indicators? | ||
value-type: bool | ||
|
||
unit: manifest entry | ||
id: has_led_touchpad | ||
_name: Touchpad | ||
_prompt: Does this machine have the following LED indicators? | ||
value-type: bool | ||
|
||
unit: manifest entry | ||
id: has_led_wireless | ||
_name: Wireless | ||
_prompt: Does this machine have the following LED indicators? | ||
value-type: bool | ||
|
||
unit: manifest entry | ||
id: has_led_audio_mute | ||
_name: Audio mute | ||
_prompt: Does this machine have the following LED indicators? | ||
value-type: bool | ||
|
||
unit: manifest entry | ||
id: has_led_microphone_mute | ||
_name: Microphone mute | ||
_prompt: Does this machine have the following LED indicators? | ||
value-type: bool | ||
|
||
unit: manifest entry | ||
id: has_led_serial | ||
_name: Serial transfer | ||
_prompt: Does this machine have the following LED indicators? | ||
value-type: bool | ||
|
||
unit: manifest entry | ||
id: has_led_fn_lock | ||
_name: Function key lock (Fn lock) | ||
_prompt: Does this machine have the following LED indicators? | ||
value-type: bool | ||
|
||
unit: manifest entry | ||
id: has_led_numeric_keypad | ||
_name: Numeric keypad | ||
_prompt: Does this machine have the following LED indicators? | ||
value-type: bool |
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
Oops, something went wrong.