diff options
author | Daniel Manrique <roadmr@ubuntu.com> | 2014-08-06 16:24:17 -0400 |
---|---|---|
committer | Daniel Manrique <roadmr@ubuntu.com> | 2014-08-06 16:24:17 -0400 |
commit | ce5e822f2e3ab127987032cba444a937ff16d311 (patch) | |
tree | 4594e16994ff7fe5cc5bcb870b2c7b39875a76e8 | |
parent | 4544bbe63e45dc4f1e7531d89b9dbed08d4fa796 (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
-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', |