Make sure that mathspecial unittests really get run. (They definitely run on my system, but it's better to be certain).

This commit is contained in:
Don Clugston 2010-11-19 04:24:14 +00:00
parent af1fb0b618
commit cf72a8c6e9

View file

@ -32,6 +32,7 @@ public import std.getopt;
public import std.intrinsic; public import std.intrinsic;
public import std.loader; public import std.loader;
public import std.math; public import std.math;
public import std.mathspecial;
public import std.md5; public import std.md5;
public import std.metastrings; public import std.metastrings;
public import std.mmfile; public import std.mmfile;
@ -109,8 +110,8 @@ version (all)
assert(x[1] == 3); assert(x[1] == 3);
assert(x[2] == 45); assert(x[2] == 45);
std.math.tgamma(3); std.math.sin(3.0);
std.math.lgamma(3); std.mathspecial.gamma(6.2);
std.demangle.demangle("hello"); std.demangle.demangle("hello");