You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using ginkgo to run the testcases in a project that has 26w lines of code, with the -p flag enabled.
Issues
When running testcases in parallel, more cpu cores lead to more duplicated lines. If I add the -p flag and run on a 64 cores machine, the size of cover.out file is 7.9GB. And the size of cover.out file is 130MB when -p flag removed.
All the coverage files are read into combined buffer, which use lots of memory. And ginkgo will be oom-killed.