Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test/cli/test-other.py: Fix test_showtime_top5_file.
test_showtime_top5_file() assumes that all reported elements, of which the "top 5" are validated, end with the string "- 1 result(s))". This is clearly not the case when viewing the entire list: ```bash $ cppcheck --showtime=summary --quiet empty.c |grep "2 result" valueFlowLifetime(tokenlist, errorLogger, settings): 3.4e-05s (avg. 1.7e-05s - 2 result(s)) valueFlowEnumValue(symboldatabase, settings): 3e-06s (avg. 1.5e-06s - 2 result(s)) ``` As the order of items is non-deterministic, this test makes CI workflows randomly fail. This patch addresses the issue by adjusting the expected string to the reported item.
- Loading branch information