mirror of
https://github.com/anrieff/libcpuid
synced 2024-11-10 22:59:13 +00:00
Python: Do not fail sanity tests if current CPU is unsupported
This commit is contained in:
parent
20fbc35374
commit
bcd2dea9ee
1 changed files with 7 additions and 3 deletions
|
@ -5,6 +5,7 @@ import tempfile
|
|||
import libcpuid
|
||||
from libcpuid.info import CPUInfo, SystemInfo
|
||||
from libcpuid.raw import CPURawData, CPURawDataArray
|
||||
from libcpuid.errors import CLibraryError
|
||||
|
||||
|
||||
def test_cpu_name_in_vendor_list():
|
||||
|
@ -12,9 +13,12 @@ def test_cpu_name_in_vendor_list():
|
|||
Checks that the current CPU codename appears
|
||||
in the list of all CPUs of its vendor.
|
||||
"""
|
||||
info = CPUInfo.from_current_cpu()
|
||||
cpulist = libcpuid.get_cpu_list(info.vendor)
|
||||
assert info.cpu_codename in cpulist
|
||||
try:
|
||||
info = CPUInfo.from_current_cpu()
|
||||
cpulist = libcpuid.get_cpu_list(info.vendor)
|
||||
assert info.cpu_codename in cpulist
|
||||
except CLibraryError:
|
||||
pass
|
||||
|
||||
|
||||
def test_serialization():
|
||||
|
|
Loading…
Reference in a new issue