Forum member

topeju

9 posts

Posts by topeju

  1. mscorlib recursive resource lookup bug

    [quote=Remco;5389]Would you be able to tell me a bit more about the structure of your solution? Do you have multiple test projects? What are the normal execution times for these 71 tests?[/quote] The solution has four projects in total: the web application itself, a data access project (which a…

  2. mscorlib recursive resource lookup bug

    [quote=Remco;5387]It's physically possible for tests to exist in the queue multiple times, but only if at least one of the instances is already being executed. Normally the pipliner should pull out any existing matching tests within the processing queue when it tries to add new ones. So if those…

  3. mscorlib recursive resource lookup bug

    [quote=Remco;5385]Anyway, I'd like to learn a bit more about the double test execution. How have you observed this? Is it in the Tests Window or the Processing Queue? Is it still happening? [/quote] Yes, it's still happening. I've observed it in the Tests Window, where it shows roughly twice …

  4. mscorlib recursive resource lookup bug

    With NCrunch 2.4.0.2, I get an assert failure on one project which used to work just fine, though I cannot say if it started failing after upgrading to 2.4.0.2 (from one of the pre-release 2.x versions), or upgrading JustMock from 2013.3.1211.3 to 2013.3.1320.1 (I did both around the same time). …

  5. Intermittent build error with ANTLR 3

    [quote=Remco;4150]NCrunch has a configuration option that can do just this. Try changing the [url=http://www.ncrunch.net/documentation/reference_global-configuration_build-process-memory-limit]build process memory limit[/url] global configuration option to '1'. In this way, NCrunch will evaluate t…

  6. Intermittent build error with ANTLR 3

    [quote=topeju;4144]I can try to create a solution that I can send - that shouldn't be too difficult as my project currently doesn't have much else besides the ANTLR stuff, so I expect a basic calculator project using ANTLR might fail just the same.[/quote] I now have a [url=http://www.otheralien.…

  7. Intermittent build error with ANTLR 3

    [quote=Remco;4142]Try changing the [url=http://www.ncrunch.net/documentation/reference_project-configuration_build-process-cpu-architecture]Build process CPU architecture[/url] for this project to x64 to see if that makes any difference.[/quote] Ok, tried this, first without compatibility mode, a…

  8. Intermittent build error with ANTLR 3

    Hi, and thanks for the quick reply. [quote=Remco;4140]When working with a 3rd party framework that performs extra build steps, the first things I usually suggest are checking for additional files to include (which you've done), and to try enabling the 'Copy referenced assemblies to output' projec…

  9. Intermittent build error with ANTLR 3

    I'm using unit tests with my ANTLR3-generated parser project to verify my grammar definition. I just downloaded NCrunch to trial its use as well, but it seems to have some problems with ANTLR3. In order to get ANTLR builds working at all, I first needed to add the grammar file (.g3) and the ANTLR…