diff --git a/tests/dd.lisp b/tests/dd.lisp
new file mode 100644
index 0000000000000000000000000000000000000000..37c34476d6d9846af44fc506cff60293f4071fa3
--- /dev/null
+++ b/tests/dd.lisp
@@ -0,0 +1,13 @@
+;;; Tests for the double-double arithmetic..
+
+(defpackage :dd-tests
+  (:use :cl :lisp-unit))
+
+(in-package "DD-TESTS")
+
+(define-test two-prod
+  "Test two-prod"
+  ;; This should not overflow anymore.
+  (assert-equal (values 1.7976931281653871d308
+			-4.9896007738368d291)
+		(c::two-prod 1.7976931214684583d308 (1+ (scale-float 1d0 -28)))))