[email protected](244): Initial test fails
Works for me:
$ cat src/test.d
import std.stdio;
void main()
{
writeln("foo");
writeln("bar");
}
$ dustmite src "cat test.d 2>&1 | grep -qF foo && dmd -c test.d"
[...]
Done in 31 tests and 443 ms; reduced version is in src.reduced
$ cat src.reduced/test.d
import std.stdio;
void main()
{
writeln("foo");
}
I guess make sure the dmd command succeeds on the initial file.
