diff options
author | Daniel Manrique <roadmr@ubuntu.com> | 2014-08-05 13:15:12 -0400 |
---|---|---|
committer | Daniel Manrique <roadmr@ubuntu.com> | 2014-08-05 13:15:12 -0400 |
commit | 7c79b61b92da4defb6d152df6f759d19cec893db (patch) | |
tree | 1e96c8312ebd1fe984fde62a4c807db99e3c7a03 /bin | |
parent | 2e54675674d412bcda2bfb4f54d394e7a46709b9 (diff) |
providers:checkbox: Add a series of new tests to fwts_test script
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/fwts_test | 31 |
1 files changed, 29 insertions, 2 deletions
diff --git a/bin/fwts_test b/bin/fwts_test index f8f7949..710c016 100755 --- a/bin/fwts_test +++ b/bin/fwts_test @@ -7,32 +7,59 @@ from argparse import ArgumentParser, RawTextHelpFormatter, REMAINDER from subprocess import Popen, PIPE from syslog import * -TESTS = ['acpidump', +TESTS = ['ac_adapter', + 'acpidump', 'acpiinfo', + 'acpiinfo', 'acpitables', 'apicedge', 'apicinstance', 'aspm', + 'battery', 'bios32', 'bios_info', + 'bios_info', + 'brightness', 'checksum', + 'crs', + 'csm', 'cstates', 'dmar', + 'dmicheck', 'ebda', 'fadt', + 'fan', + 'hda_audio', + 'hotkey', 'hpet_check', 'klog', + 'lid', + 'maxfreq', + 'maxreadreq', 'mcfg', 'method', + 'microcode', 'mpcheck', 'msr', 'mtrr', 'nx', 'oops', + 'os2gap', + 'osilinux', + 'pci', + 'pciirq', + 'pnp', + 'power_button', + 'securebootcert', + 'smbios', + 'syntaxcheck', + 'uefirtmisc', + 'uefirttime', 'uefirtvariable', 'version', 'virt', - 'wmi'] + 'wmi' + ] def get_sleep_times(start_marker, end_marker, sleep_time, resume_time): |