Forum member

Kelon

9 posts

Posts by Kelon

  1. NCrunch hangs during Build with Engine Core Load 97%

    Thanks for this reply. I've tried 'Terminate test runners on complete':false After several hours of coding, NCrunch stayed stable! :) Your guess #1 sounds possible - I haven't debugged it yet. I'll try to find the responsible O/S handle... probably one of the IL Code generators. (Well, hopefu…

  2. NCrunch hangs during Build with Engine Core Load 97%

    Ok, I've got a snapshot in JetBrains dotTrace. Its quite small - 26MB zipped. Tell me if you need it. It seems to lock on CoreDispatcher -> ClearProcesses -> [b]TerminateProcess[/b] while a StopUsingProcess in a Worker is already running, but tries to call [b]TerminateProcess[/b]

  3. NCrunch hangs during Build with Engine Core Load 97%

    All tests are running with NUnit3. No, I havent found any other sides yet. Currently I've been only the default VS Debugger which only shows IL. But I'll keep my eyes open to gather more information.

  4. NCrunch hangs during Build with Engine Core Load 97%

    After a while of testing in [b]CompareIL/default[/b] Mode and [b]Run impacted tests[/b]: It has gotten better - no exception thrown, no more hang during build & first full run. But I still get the EngineHost hanging, especially in "Run pinned tests"-Mode even without having any pinned tests. …

  5. NCrunch hangs during Build with Engine Core Load 97%

    Thanks :) Installed, building up some more stress testing...

  6. NCrunch hangs during Build with Engine Core Load 97%

    I think the easiest way to reproduce this exception for development is to change GetTypeById...) to always throw the exception or randomly throw it - even in a small solution. But I'm glad to help and retest it with a build. :)

  7. NCrunch hangs during Build with Engine Core Load 97%

    After several months of living with this, I've inspected this issue a bit deeper. [u]Issue:[/u] Having a large solution with about 150 projects and a developer machine with 16 cores and thus NCrunch with heavy multithreading, I've got a blocker many times. Asking my team members it seemed to be …

  8. csc.exe -2146232797 NullReferenceException since 2.23

    There's probably a similiar problem with property functions (get, set) [code=csharp] private string name; public string Name { [ExcludeFromCodeCoverage /* Seems to be cut out */] get { return this.name; } set{ this.name = value; } }[/code] [code=csharp] sut.Name = "Foo…

  9. csc.exe -2146232797 NullReferenceException since 2.23

    Hi, First post as a long year customer - and it's a reproducable error report. Our team uses ncrunch because we love the great code coverage support. But since 2.23, we've had a build failure which prevented any product updates (2.22.0.1 succeeds). Finally we've found the issue of the failure. T…