ci: fix test logs on linux#4892
Open
ningmingxiao wants to merge 1 commit into
Open
Conversation
f2f1e6f to
21922ee
Compare
deb7ce4 to
f2f1e6f
Compare
Contributor
Author
|
After hundreds of tests, it works perfectly. |
sathiraumesh
suggested changes
May 12, 2026
Signed-off-by: ningmingxiao <ning.mingxiao@zte.com.cn>
Contributor
Author
|
done thanks @sathiraumesh |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
call "nerdctl logs --untils " time is 16:03:19
but json logs time is 16:01:40.459948268Z
the root reason should be the number exceeds the maximum concurrent test case limit, and some test cases will be queued .
The default concurrency of t.Parallel() is the number of CPU cores.
so we can't run many testcase at a same time in test logs because it is Time-critical testcase.
fix #4889
@AkihiroSuda