Exemplo n.º 1
0
def register_tests():
    testsuite.add_test("MSR consistency test", msr_test)
    testsuite.add_test("Power management test suite, generic profile",
                       test_pm_generic_profile)
    testsuite.add_test("C-state residency test",
                       lambda: cstate_residency.test(*residency_params))
    testsuite.add_test(
        "C-state residency test with USB disabled via BIOS handoff",
        lambda: cstate_residency.test_with_usb_disabled(*residency_params),
        runall=False)
    testsuite.add_test("Test hardware P-state ratios",
                       lambda: pstate.test_hardware_pstates(pstate.turbo_msr))
Exemplo n.º 2
0
def register_tests():
    testsuite.add_test("MSR consistency test", msr_test, runall=False)
Exemplo n.º 3
0
def register_tests():
    testsuite.add_test("MP Table", test_mptable)
Exemplo n.º 4
0
def register_tests():
    testsuite.add_test("MSR consistency test", msr_test)
Exemplo n.º 5
0
def register_tests():
    testsuite.add_test("SMI latency test", smi_latency)
    testsuite.add_test("SMI latency test with USB disabled via BIOS handoff",
                       test_with_usb_disabled,
                       runall=False)
Exemplo n.º 6
0
def register_tests():
    testsuite.add_test("EFI System Table CRC", test_system_services_crc, submenu="EFI Tests")
    testsuite.add_test("EFI Runtime Services Table CRC", test_runtime_services_crc, submenu="EFI Tests")
    testsuite.add_test("EFI Boot Services Table CRC", test_boot_services_crc, submenu="EFI Tests")
Exemplo n.º 7
0
def register_tests():
    testsuite.add_test("MSR consistency test", msr_test)
    testsuite.add_test("_PSD (P-State Dependency) test",
                       testacpi.test_psd_thread_scope,
                       submenu="ACPI Tests")
    power_profile_submenu = "Power optimization, profile specific tests"
    testsuite.add_test("Power optimization, Performance profile",
                       power_opt_perf_profile,
                       submenu=power_profile_submenu,
                       runall=False)
    testsuite.add_test(
        "Power optimization, Balance with Performance Bias profile",
        power_opt_bal_perf_bias_profile,
        submenu=power_profile_submenu,
        runall=False)
    testsuite.add_test("Power optimization, Balance with Energy Bias profile",
                       power_opt_bal_energy_bias_profile,
                       submenu=power_profile_submenu,
                       runall=False)
    testsuite.add_test("Power optimization, Low Power profile",
                       power_opt_low_power_profile,
                       submenu=power_profile_submenu,
                       runall=False)
    testsuite.add_test("Test hardware P-state ratios",
                       lambda: pstate.test_hardware_pstates(pstate.turbo_msr))
Exemplo n.º 8
0
def register_tests():
    testsuite.add_test("PCI Interrupt Routing Table", test_pirtable)
Exemplo n.º 9
0
def register_tests():
    testsuite.add_test("MSR consistency test", msr_test, runall=False)
Exemplo n.º 10
0
def register_tests():
    testsuite.add_test("SMRR configuration", test_smrr)
Exemplo n.º 11
0
def register_tests():
    testsuite.add_test("PCI Interrupt Routing Table", test_pirtable)
Exemplo n.º 12
0
def register_tests():
    testsuite.add_test("SMI latency test", smi_latency);
    testsuite.add_test("SMI latency test with USB disabled via BIOS handoff", test_with_usb_disabled, runall=False);
Exemplo n.º 13
0
def register_tests():
    testsuite.add_test("MSR consistency test", msr_test)
    testsuite.add_test("_PSD (P-State Dependency) test", testacpi.test_psd_thread_scope, submenu="ACPI Tests")
    power_profile_submenu="Power optimization, profile specific tests"
    testsuite.add_test("Power optimization, Performance profile", power_opt_perf_profile, submenu=power_profile_submenu, runall=False)
    testsuite.add_test("Power optimization, Balance with Performance Bias profile", power_opt_bal_perf_bias_profile, submenu=power_profile_submenu, runall=False)
    testsuite.add_test("Power optimization, Balance with Energy Bias profile", power_opt_bal_energy_bias_profile, submenu=power_profile_submenu, runall=False)
    testsuite.add_test("Power optimization, Low Power profile", power_opt_low_power_profile, submenu=power_profile_submenu, runall=False)
    testsuite.add_test("Test hardware P-state ratios", lambda: pstate.test_hardware_pstates(pstate.turbo_msr))
Exemplo n.º 14
0
def register_tests():
    testsuite.add_test("MSR consistency test", msr_test)
Exemplo n.º 15
0
def register_tests():
    testsuite.add_test("MSR consistency test", msr_test)
    testsuite.add_test("Power management test suite, generic profile", test_pm_generic_profile)
    testsuite.add_test("C-state residency test", lambda: cstate_residency.test(*residency_params))
    testsuite.add_test("C-state residency test with USB disabled via BIOS handoff", lambda: cstate_residency.test_with_usb_disabled(*residency_params), runall=False)
    testsuite.add_test("Test hardware P-state ratios", lambda: pstate.test_hardware_pstates(pstate.turbo_msr))
Exemplo n.º 16
0
def register_tests():
    testsuite.add_test("ACPI _MAT (Multiple APIC Table Entry) under Processor objects", test_mat, submenu="ACPI Tests")
    testsuite.add_test("ACPI _PSS (Pstate) table conformance tests", test_pss, submenu="ACPI Tests")
    testsuite.add_test("ACPI _PSS (Pstate) runtime tests", test_pstates, submenu="ACPI Tests")
    testsuite.add_test("ACPI DSDT (Differentiated System Description Table)", test_dsdt, submenu="ACPI Tests")
    testsuite.add_test("ACPI FACP (Fixed ACPI Description Table)", test_facp, submenu="ACPI Tests")
    testsuite.add_test("ACPI HPET (High Precision Event Timer Table)", test_hpet, submenu="ACPI Tests")
    testsuite.add_test("ACPI MADT (Multiple APIC Description Table)", test_apic, submenu="ACPI Tests")
    testsuite.add_test("ACPI MPST (Memory Power State Table)", test_mpst, submenu="ACPI Tests")
    testsuite.add_test("ACPI RSDP (Root System Description Pointer Structure)", test_rsdp, submenu="ACPI Tests")
    testsuite.add_test("ACPI XSDT (Extended System Description Table)", test_hpet, submenu="ACPI Tests")
Exemplo n.º 17
0
def register_tests():
    testsuite.add_test("EFI System Table CRC", test_system_services_crc, submenu="EFI Tests")
    testsuite.add_test("EFI Runtime Services Table CRC", test_runtime_services_crc, submenu="EFI Tests")
    testsuite.add_test("EFI Boot Services Table CRC", test_boot_services_crc, submenu="EFI Tests")
Exemplo n.º 18
0
def register_tests():
    testsuite.add_test("MP Table", test_mptable)
Exemplo n.º 19
0
def register_tests():
    testsuite.add_test("ACPI _MAT (Multiple APIC Table Entry) under Processor objects", test_mat, submenu="ACPI Tests")
    testsuite.add_test("ACPI _PSS (Pstate) table conformance tests", test_pss, submenu="ACPI Tests")
    testsuite.add_test("ACPI _PSS (Pstate) runtime tests", test_pstates, submenu="ACPI Tests")
    testsuite.add_test("ACPI DSDT (Differentiated System Description Table)", test_dsdt, submenu="ACPI Tests")
    testsuite.add_test("ACPI FACP (Fixed ACPI Description Table)", test_facp, submenu="ACPI Tests")
    testsuite.add_test("ACPI HPET (High Precision Event Timer Table)", test_hpet, submenu="ACPI Tests")
    testsuite.add_test("ACPI MADT (Multiple APIC Description Table)", test_apic, submenu="ACPI Tests")
    testsuite.add_test("ACPI MPST (Memory Power State Table)", test_mpst, submenu="ACPI Tests")
    testsuite.add_test("ACPI RSDP (Root System Description Pointer Structure)", test_rsdp, submenu="ACPI Tests")
    testsuite.add_test("ACPI XSDT (Extended System Description Table)", test_xsdt, submenu="ACPI Tests")