configure.ac: Replace with a new version.
[u/mdw/catacomb] / tests / mpint
index 771ea0d..49157ba 100644 (file)
@@ -1,6 +1,6 @@
 # Test vectors for conversion between MP ints and C ints
 #
-# $Id: mpint,v 1.3 2000/07/09 21:33:54 mdw Exp $
+# $Id: mpint,v 1.4 2002/01/13 19:51:34 mdw Exp $
 
 # The tests look messy because I'm fighting with atoi here as well as the
 # integer conversion routines I'm trying to test.
@@ -9,14 +9,21 @@ fromuint {
   0 0;
   1 1;
   -5 0xfffffffb;
+  0x7ffff 0x7ffff;
+  0x80000 0x80000;
+  0xfffff 0xfffff;
   0x7fffffff 0x7fffffff;
   0x80000000 0x80000000;               # Bastard torture test
+  0xffffffff 0xffffffff;
 }
 
 fromint {
   0 0;
   1 1;
   -5 -5;
+  0x7ffff 0x7ffff;
+  0x80000 0x80000;
+  0xfffff 0xfffff;
   0x7fffffff 0x7fffffff;
   -0x80000000 -0x80000000;             # Bastard torture test
 }
@@ -25,14 +32,21 @@ touint {
   0 0;
   1 1;
   -5 -5;
+  0x7ffff 0x7ffff;
+  0x80000 0x80000;
+  0xfffff 0xfffff;
   0x7fffffff 0x7fffffff;
   0x80000000 -0x80000000;              # Bastard torture test
+  0xffffffff 0xffffffff;
 }
 
 toint {
   0 0;
   1 1;
   -5 -5;
+  0x7ffff 0x7ffff;
+  0x80000 0x80000;
+  0xfffff 0xfffff;
   0x7fffffff 0x7fffffff;
   -0x80000000 -0x80000000;             # Bastard torture test
 }