The random unittest fails on mac, it seems that it can be reduced to
module tstRand;
import tango.math.random.Random;
import tango.math.random.engines.KISS;
import tango.io.Stdout;
import tango.core.stacktrace.TraceExceptions;
int main() {
Stdout("pippo1").newline;
auto r=new RandomG!(Kiss99)();
Stdout("pippo1-0").newline;
auto src=r.normalSource!(float)(); // this fails
Stdout("pippo1").newline;
return 0;
}
somehow the call fails before it even enters the function, but r seems to be valid (other calls work).