Re: The unittests are failing (individually)

2016-08-25 Thread Seb via Digitalmars-d
On Thursday, 25 August 2016 at 12:03:08 UTC, John Colvin wrote: Try this: git clone https://github.com/dlang/dmd cd dmd make -f posix.mak -j cd .. git clone https://github.com/dlang/druntime cd druntime make -f posix.mak -j cd .. git clone https://github.com/dlang/phobos cd phobos for fn in

The unittests are failing (individually)

2016-08-25 Thread John Colvin via Digitalmars-d
Try this: git clone https://github.com/dlang/dmd cd dmd make -f posix.mak -j cd .. git clone https://github.com/dlang/druntime cd druntime make -f posix.mak -j cd .. git clone https://github.com/dlang/phobos cd phobos for fn in `find std -name \*.d`; do make -f posix.mak "${fn%.d}.test" ;