From cf72a8c6e94162c146263cc635384242c3389337 Mon Sep 17 00:00:00 2001 From: Don Clugston Date: Fri, 19 Nov 2010 04:24:14 +0000 Subject: [PATCH] Make sure that mathspecial unittests really get run. (They definitely run on my system, but it's better to be certain). --- unittest.d | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/unittest.d b/unittest.d index e350510cc..65da6f0bf 100644 --- a/unittest.d +++ b/unittest.d @@ -32,6 +32,7 @@ public import std.getopt; public import std.intrinsic; public import std.loader; public import std.math; +public import std.mathspecial; public import std.md5; public import std.metastrings; public import std.mmfile; @@ -109,8 +110,8 @@ version (all) assert(x[1] == 3); assert(x[2] == 45); - std.math.tgamma(3); - std.math.lgamma(3); + std.math.sin(3.0); + std.mathspecial.gamma(6.2); std.demangle.demangle("hello");