Merge remote-tracking branch 'origin/stable-2.0'
[bpt/guile.git] / test-suite / standalone / test-num2integral.c
index 13513ed..c8dc3a7 100644 (file)
@@ -1,34 +1,31 @@
-/* Copyright (C) 1999,2000,2001,2003,2004 Free Software Foundation, Inc.
+/* Copyright (C) 1999, 2000, 2001, 2003, 2004, 2006, 2008, 2010, 2011
+ *   2012 Free Software Foundation, Inc.
  *
  * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
+ * modify it under the terms of the GNU Lesser General Public License
+ * as published by the Free Software Foundation; either version 3 of
+ * the License, or (at your option) any later version.
  *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * This library is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
  * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+ * 02110-1301 USA
  */
 
-#include "libguile.h"
+#ifdef HAVE_CONFIG_H
+# include <config.h>
+#endif
+
+#include <libguile.h>
 
 #include <stdio.h>
 #include <assert.h>
-
-/* if you need to change this, change numbers.c as well */
-#if SCM_SIZEOF_LONG_LONG != 0
-# ifndef LLONG_MAX
-#  define ULLONG_MAX ((unsigned long long) (-1))
-#  define LLONG_MAX ((long long) (ULLONG_MAX >> 1))
-#  define LLONG_MIN (~LLONG_MAX)
-# endif
-#endif
-
+#include <limits.h>
 
 SCM out_of_range_handler (void *data, SCM key, SCM args);
 SCM call_num2long_long_body (void *data);
@@ -38,122 +35,120 @@ SCM call_num2ulong_long_body (void *data);
 SCM
 out_of_range_handler (void *data, SCM key, SCM args)
 {
-  assert (scm_equal_p (key, scm_str2symbol ("out-of-range")));
+  assert (scm_is_eq (key, scm_from_locale_symbol ("out-of-range")));
   return SCM_BOOL_T;
 }
 
 SCM
 call_num2long_long_body (void *data)
 {
-  scm_num2long_long (* (SCM *) data, SCM_ARG1, "call_num2long_long_body");
+  scm_to_long_long (* (SCM *) data);
   return SCM_BOOL_F;
 }
 
 SCM
 call_num2ulong_long_body (void *data)
 {
-  scm_num2ulong_long (* (SCM *) data, SCM_ARG1, "call_num2ulong_long_body");
+  scm_to_ulong_long (* (SCM *) data);
   return SCM_BOOL_F;
 }
 
 static void
 test_long_long ()
 {
-#if SCM_SIZEOF_LONG_LONG != 0
   {
-    SCM n = scm_long_long2num (LLONG_MIN);
-    long long result = scm_num2long_long(n, 0, "main");
+    SCM n = scm_from_long_long (LLONG_MIN);
+    long long result = scm_to_long_long(n);
     assert (result == LLONG_MIN);
   }
 
   /* LLONG_MIN - 1 */
   {
-    SCM n = scm_difference (scm_long_long2num (LLONG_MIN), SCM_MAKINUM(1));
+    SCM n = scm_difference (scm_from_long_long (LLONG_MIN), scm_from_int (1));
     SCM caught = scm_internal_catch (SCM_BOOL_T, call_num2long_long_body, &n,
                                      out_of_range_handler, NULL);
-    assert (! SCM_FALSEP (caught));
+    assert (scm_is_true (caught));
   }
 
-  /* LLONG_MIN + LLONG_MIN/2 */
+  /* SCM_I_LLONG_MIN + SCM_I_LLONG_MIN/2 */
   {
-    SCM n = scm_sum (scm_long_long2num (LLONG_MIN),
-                     scm_long_long2num (LLONG_MIN / 2));
+    SCM n = scm_sum (scm_from_long_long (LLONG_MIN),
+                     scm_from_long_long (LLONG_MIN / 2));
     SCM caught = scm_internal_catch (SCM_BOOL_T, call_num2long_long_body, &n,
                                      out_of_range_handler, NULL);
-    assert (! SCM_FALSEP (caught));
+    assert (scm_is_true (caught));
   }
 
-  /* LLONG_MAX + 1 */
+  /* SCM_I_LLONG_MAX + 1 */
   {
-    SCM n = scm_sum (scm_long_long2num (LLONG_MAX), SCM_MAKINUM(1));
+    SCM n = scm_sum (scm_from_long_long (LLONG_MAX), scm_from_int (1));
     SCM caught = scm_internal_catch (SCM_BOOL_T, call_num2long_long_body, &n,
                                      out_of_range_handler, NULL);
-    assert (! SCM_FALSEP (caught));
+    assert (scm_is_true (caught));
   }
 
   /* 2^1024 */
   {
-    SCM n = scm_ash (SCM_MAKINUM (1), SCM_MAKINUM (1024));
+    SCM n = scm_ash (scm_from_int (1), scm_from_int (1024));
     SCM caught = scm_internal_catch (SCM_BOOL_T, call_num2long_long_body, &n,
                                      out_of_range_handler, NULL);
-    assert (! SCM_FALSEP (caught));
+    assert (scm_is_true (caught));
   }
 
   /* -2^1024 */
   {
-    SCM n = scm_difference (SCM_MAKINUM (0),
-                            scm_ash (SCM_MAKINUM (1), SCM_MAKINUM (1024)));
+    SCM n = scm_difference (scm_from_int (0),
+                            scm_ash (scm_from_int (1), scm_from_int (1024)));
     SCM caught = scm_internal_catch (SCM_BOOL_T, call_num2long_long_body, &n,
                                      out_of_range_handler, NULL);
-    assert (! SCM_FALSEP (caught));
+    assert (scm_is_true (caught));
   }
-
-#endif /* SCM_SIZEOF_LONG_LONG != 0 */
 }
 
 static void
 test_ulong_long ()
 {
-#if SCM_SIZEOF_LONG_LONG != 0
-
   {
-    SCM n = scm_ulong_long2num (ULLONG_MAX);
-    unsigned long long result = scm_num2ulong_long(n, 0, "main");
+    SCM n = scm_from_ulong_long (ULLONG_MAX);
+    unsigned long long result = scm_to_ulong_long(n);
     assert (result == ULLONG_MAX);
   }
 
   /* -1 */
   {
-    SCM n = SCM_MAKINUM (-1);
+    SCM n = scm_from_int (-1);
     SCM caught = scm_internal_catch (SCM_BOOL_T, call_num2ulong_long_body, &n,
                                      out_of_range_handler, NULL);
-    assert (! SCM_FALSEP (caught));
+    assert (scm_is_true (caught));
   }
 
-  /* ULLONG_MAX + 1 */
+  /* SCM_I_ULLONG_MAX + 1 */
   {
-    SCM n = scm_sum (scm_ulong_long2num (ULLONG_MAX), SCM_MAKINUM(1));
+    SCM n = scm_sum (scm_from_ulong_long (ULLONG_MAX), scm_from_int (1));
     SCM caught = scm_internal_catch (SCM_BOOL_T, call_num2ulong_long_body, &n,
                                      out_of_range_handler, NULL);
-    assert (! SCM_FALSEP (caught));
+    assert (scm_is_true (caught));
   }
 
   /* 2^1024 */
   {
-    SCM n = scm_ash (SCM_MAKINUM (1), SCM_MAKINUM (1024));
+    SCM n = scm_ash (scm_from_int (1), scm_from_int (1024));
     SCM caught = scm_internal_catch (SCM_BOOL_T, call_num2long_long_body, &n,
                                      out_of_range_handler, NULL);
-    assert (! SCM_FALSEP (caught));
+    assert (scm_is_true (caught));
   }
+}
 
-#endif /* SCM_SIZEOF_LONG_LONG != 0 */
+static void
+tests (void *data, int argc, char **argv)
+{
+  test_long_long ();
+  test_ulong_long ();
 }
 
 int
 main (int argc, char *argv[])
 {
-  scm_init_guile();
-  test_long_long ();
-  test_ulong_long ();
+  scm_boot_guile (argc, argv, tests, NULL);
   return 0;
 }