diff options
author | Daniel Manrique <roadmr@ubuntu.com> | 2014-08-06 21:27:13 +0000 |
---|---|---|
committer | Daniel Manrique <> | 2014-08-06 21:27:13 +0000 |
commit | 632fe63803f3855e48844a8517343cdb41f7a6e2 (patch) | |
tree | 619b227d66500763b2a43de9037e837c4353454d | |
parent | 401e1d262ad1b9d6c28bd5d24b0eb1ee59075864 (diff) | |
parent | ce5e822f2e3ab127987032cba444a937ff16d311 (diff) |
" providers:checkbox: Remove interactive fwts tests.
Our wrapper script can't handle those interactive tests, and they are covered by other checkbox jobs, so I'm just removing them. The removed tests are: ac_adapter battery brightness hotkey lid power_button [r=bladernr][bug=1353655][author=roadmr]"
-rwxr-xr-x | bin/fwts_test | 22 |
1 files changed, 13 insertions, 9 deletions
diff --git a/bin/fwts_test b/bin/fwts_test index 710c016..fd8c89a 100755 --- a/bin/fwts_test +++ b/bin/fwts_test @@ -7,19 +7,26 @@ from argparse import ArgumentParser, RawTextHelpFormatter, REMAINDER from subprocess import Popen, PIPE from syslog import * -TESTS = ['ac_adapter', - 'acpidump', - 'acpiinfo', + +# These tests require user interaction and need either special handling +# or skipping altogether (right now, we skip them but they're kept here +# in case we figure out a way to present the interaction to the user). +INTERACTIVE_TESTS = [ + 'ac_adapter', + 'battery', + 'hotkey', + 'power_button', + 'brightness', + 'lid' + ] +TESTS = ['acpidump', 'acpiinfo', 'acpitables', 'apicedge', 'apicinstance', 'aspm', - 'battery', 'bios32', - 'bios_info', 'bios_info', - 'brightness', 'checksum', 'crs', 'csm', @@ -30,10 +37,8 @@ TESTS = ['ac_adapter', 'fadt', 'fan', 'hda_audio', - 'hotkey', 'hpet_check', 'klog', - 'lid', 'maxfreq', 'maxreadreq', 'mcfg', @@ -49,7 +54,6 @@ TESTS = ['ac_adapter', 'pci', 'pciirq', 'pnp', - 'power_button', 'securebootcert', 'smbios', 'syntaxcheck', |