February 03, 2014
Previously I was able to run the dmd test suite on windows using msys.
If I now run make within the dmd test folder I get:

make[1]: *** No rule to make target `test_results/runnable/A16.d.out', needed by `run_runnable_tests'.  Stop.

I also tried using mingw32-make, same problem.

Kind Regards
Benjamin Thaut
February 04, 2014
Am 03.02.2014 11:21, schrieb Benjamin Thaut:
> Previously I was able to run the dmd test suite on windows using msys.
> If I now run make within the dmd test folder I get:
>
> make[1]: *** No rule to make target `test_results/runnable/A16.d.out',
> needed by `run_runnable_tests'.  Stop.
>
> I also tried using mingw32-make, same problem.
>
> Kind Regards
> Benjamin Thaut

I found the problem. If you do:

make DMD=dmd.exe

the makefile will fail. If you however do:

make DMD=../dmd.exe

or

make DMD=/absolute/path/to/dmd.exe

it will work.

The makefile seems to be failing if the DMD variable isn't a path.