Jakub Chocholowicz

Results 33 comments of Jakub Chocholowicz

@rchiodo people are asking why this message is not showing up. It looks like this is not related to projects my team owns.

You are mixing usage of 2 different tools. Cobertura reports are generated by coverlet. .coverage reports are generated by Microsoft.CodeCoverage. I suggest usage of one of those tools in azure...

@ibiglari you are using dynamic native instrumentation which is not fully stable. Please check: https://learn.microsoft.com/en-us/visualstudio/test/customizing-code-coverage-analysis?view=vs-2022#static-and-dynamic-native-instrumentation and enable for your projects: https://learn.microsoft.com/en-us/cpp/build/reference/profile-performance-tools-profiler?view=msvc-170 to use static native instrumentation. After doing above you...

> @jakubch1 so if I add `/PROFILE` to linker options, code coverage will automatically use static instrumentation instead of dynamic instrumentation? If not, how do I instruct test host to...

@ibiglari something is wrong as I don't see ``` True False ``` inside logs. Can you double check that this was added into `` tag? Did you configure: ``` runSettingsFile:...

@ibiglari currently you are instrumenting only 1 file: `D:\a\1\s\IntegrationTests\Utils\Reflector\ReflectrService.dll`. Is it required? Please try to exclude it to see what happen: ``` .*ReflectrService\.dll$ ``` (inside ``)

@ibiglari could you please try to run it without code coverage enabled? We should check if this is even coverage related. Based on log currently your build doesn't make any...

@ibiglari thank you for info. Could you please experiment with below 4 flags: ``` False False False False ``` I expect if all flags are False you don't have issue....