-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add manifest entries for special key jobs (BugFix) (#1387)
Add manifest entries for special key jobs Instead of relying on the generic `has_special_keys` manifest entry, create a manifest entry for each of the dedicated keys test present in Checkbox (for instance volume up/down, audio mute, microphone mute, video out, etc.) Use this manifest entries in the related `keys/*` jobs. Remove the unused `has_special_keys` manifest entry. Delete mentions to "manually skip that test" for the `keys/*` jobs, since this is now controlled by a manifest entry.
- Loading branch information
Showing
2 changed files
with
113 additions
and
26 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 |
---|---|---|
@@ -1,4 +1,96 @@ | ||
unit: manifest entry | ||
id: has_special_keys | ||
_name: Special keys Support | ||
id: has_key_battery_info | ||
_name: Battery Info | ||
_prompt: Does this machine have the following special keys? | ||
value-type: bool | ||
|
||
unit: manifest entry | ||
id: has_key_brightness | ||
_name: Screen brightness up/down | ||
_prompt: Does this machine have the following special keys? | ||
value-type: bool | ||
|
||
unit: manifest entry | ||
id: has_key_fn_lock | ||
_name: Function lock (Fn lock) | ||
_prompt: Does this machine have the following special keys? | ||
value-type: bool | ||
|
||
unit: manifest entry | ||
id: has_key_hibernate | ||
_name: Hibernate | ||
_prompt: Does this machine have the following special keys? | ||
value-type: bool | ||
|
||
unit: manifest entry | ||
id: has_key_keyboard_backlight | ||
_name: Keyboard backlight | ||
_prompt: Does this machine have the following special keys? | ||
value-type: bool | ||
|
||
unit: manifest entry | ||
id: has_key_keyboard_overhead_light | ||
_name: Keyboard overhead light | ||
_prompt: Does this machine have the following special keys? | ||
value-type: bool | ||
|
||
unit: manifest entry | ||
id: has_key_lock_screen | ||
_name: Lock screen | ||
_prompt: Does this machine have the following special keys? | ||
value-type: bool | ||
|
||
unit: manifest entry | ||
id: has_key_media_control | ||
_name: Media control (Play, Next, etc.) | ||
_prompt: Does this machine have the following special keys? | ||
value-type: bool | ||
|
||
unit: manifest entry | ||
id: has_key_microphone_mute | ||
_name: Microphone mute | ||
_prompt: Does this machine have the following special keys? | ||
value-type: bool | ||
|
||
unit: manifest entry | ||
id: has_key_audio_mute | ||
_name: Audio mute | ||
_prompt: Does this machine have the following special keys? | ||
value-type: bool | ||
|
||
unit: manifest entry | ||
id: has_key_sleep | ||
_name: Sleep | ||
_prompt: Does this machine have the following special keys? | ||
value-type: bool | ||
|
||
unit: manifest entry | ||
id: has_key_super | ||
_name: Super (usually the key with the Windows logo) | ||
_prompt: Does this machine have the following special keys? | ||
value-type: bool | ||
|
||
unit: manifest entry | ||
id: has_key_touchpad | ||
_name: Touchpad on/off | ||
_prompt: Does this machine have the following special keys? | ||
value-type: bool | ||
|
||
unit: manifest entry | ||
id: has_key_video_out | ||
_name: Video out (to toggle video output) | ||
_prompt: Does this machine have the following special keys? | ||
value-type: bool | ||
|
||
unit: manifest entry | ||
id: has_key_volume | ||
_name: Volume up/down | ||
_prompt: Does this machine have the following special keys? | ||
value-type: bool | ||
|
||
unit: manifest entry | ||
id: has_key_wireless | ||
_name: Wireless on/off | ||
_prompt: Does this machine have the following special keys? | ||
value-type: bool | ||
|