At least one driver (VMD) uses 32-bit pci domains, but is effectively limited to 5-digit domains. Allow tests to access devices with 4-5 digit domains. Signed-off-by: Jon Derrick <jonathan.derrick@xxxxxxxxx> --- common/rc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/rc b/common/rc index 6b29c2b..09ce4ef 100644 --- a/common/rc +++ b/common/rc @@ -138,7 +138,7 @@ _test_dev_is_pci() { _get_pci_dev_from_blkdev() { readlink -f "$TEST_DEV_SYSFS/device" | \ - grep -Eo '[0-9a-f]{4}:[0-9a-f]{2}:[0-9a-f]{2}\.[0-9a-f]' | \ + grep -Eo '[0-9a-f]{4,5}:[0-9a-f]{2}:[0-9a-f]{2}\.[0-9a-f]' | \ tail -1 } -- 1.8.3.1