Skip to content

Commit ec7e13a

Browse files
committed
chore: slightly increase max boottime for ftrace
Because now we have ftrace enabled in guest kernels, the boot time increases slightly and no longer satisfies 150000 us time. Signed-off-by: Egor Lazarchuk <[email protected]>
1 parent 865b0dd commit ec7e13a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/integration_tests/performance/test_boottime.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@
1111
from framework.properties import global_props
1212

1313
# The maximum acceptable boot time in us.
14-
MAX_BOOT_TIME_US = 150000
14+
# It is a bit bigger than the default 150_000 because
15+
# we have ftrace enabled in the guest kernels.
16+
MAX_BOOT_TIME_US = 170000
1517

1618
# Regex for obtaining boot time from some string.
1719
TIMESTAMP_LOG_REGEX = r"Guest-boot-time\s+\=\s+(\d+)\s+us"

0 commit comments

Comments
 (0)