-
Type:
Bug
-
Resolution: Fixed
-
Priority:
Major - P3
-
Affects Version/s: None
-
Component/s: Test Format
-
None
-
Storage Engines - Foundations
-
34.139
-
None
-
None
In test/utility/misc.c, testutil_timeout_wait() calls testutil_die with the format string "child process %d killed, timed out after " PRIu32 " seconds\n" -- missing the % before PRIu32. The literal text "PRIu32" is printed instead of the timeout value, and the timeout_seconds argument is silently ignored. Add the missing %.