www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.learn - Trying to use Dustmite on windows

reply Jerry <Kickupx gmail.com> writes:
I am really not used to bash scripts.
I am trying to use Dustmite on my project since I have started 
getting an
"Assertion failure: '0' in glue.c on line 1492" and really can 
not find any issue about it in the issue tracker.

So I want to pass my DUB project to Dustmite and use findstr bash 
command to figure out result. So what I come up with was this:

dustmite source "dub run | findstr /b /C:\"Assertion failure\""


But findstr is failing with error message:

"Can not open failure"

/Jerry
Mar 22 2016
parent reply Vladimir Panteleev <thecybershadow.lists gmail.com> writes:
On Tuesday, 22 March 2016 at 09:11:52 UTC, Jerry wrote:
 So I want to pass my DUB project to Dustmite and use findstr
For reducing dub projects, try the "dub dustmite" command, e.g. "--compiler-regex=Assertion failure".
Mar 22 2016
parent Jerry <Kickupx gmail.com> writes:
On Tuesday, 22 March 2016 at 09:19:27 UTC, Vladimir Panteleev 
wrote:
 On Tuesday, 22 March 2016 at 09:11:52 UTC, Jerry wrote:
 So I want to pass my DUB project to Dustmite and use findstr
For reducing dub projects, try the "dub dustmite" command, e.g. "--compiler-regex=Assertion failure".
Thanks that works nice. But now my Initial run fails. Using dub dustmite ../testReduction --compiler-regex="Assertion failure" However when I navigate to the testReduction directory and runs dub I get error message: Assertion failure: '0' on line 1942 in file 'glue.c'
Mar 22 2016