standalone/test-list.c: New file.
authorKevin Ryde <user42@zip.com.au>
Fri, 3 Feb 2006 23:34:48 +0000 (23:34 +0000)
committerKevin Ryde <user42@zip.com.au>
Fri, 3 Feb 2006 23:34:48 +0000 (23:34 +0000)
test-suite/standalone/test-list.c [new file with mode: 0644]

diff --git a/test-suite/standalone/test-list.c b/test-suite/standalone/test-list.c
new file mode 100644 (file)
index 0000000..de2645f
--- /dev/null
@@ -0,0 +1,55 @@
+/* test-list.c - exercise libguile/list.c functions */
+
+/* Copyright (C) 2006 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.
+ *
+ * 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#include "libguile.h"
+
+#include <stdio.h>
+#include <assert.h>
+#include <string.h>
+
+/* pretty trivial, but ensure this entrypoint exists, since it was
+   documented in Guile 1.6 and earlier */
+static void
+test_scm_list (void)
+{
+  {
+    if (! scm_is_eq (SCM_EOL, scm_list (SCM_EOL)))
+      {
+        fprintf (stderr, "fail: scm_list SCM_EOL\n");
+        exit (1);
+      }
+  }
+
+  {
+    SCM lst = scm_list_2 (scm_from_int (1), scm_from_int (2));
+    if (! scm_is_true (scm_equal_p (lst, scm_list (lst))))
+      {
+        fprintf (stderr, "fail: scm_list '(1 2)\n");
+        exit (1);
+      }
+  }
+}
+
+int
+main (int argc, char **argv)
+{
+  scm_init_guile();
+  test_scm_list ();
+  return 0;
+}