From 2948fc75bdd3173dc2991663a0fac1ddd81ffd3e Mon Sep 17 00:00:00 2001 From: Kevin Ryde Date: Fri, 3 Feb 2006 23:34:48 +0000 Subject: [PATCH] standalone/test-list.c: New file. --- test-suite/standalone/test-list.c | 55 +++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 test-suite/standalone/test-list.c diff --git a/test-suite/standalone/test-list.c b/test-suite/standalone/test-list.c new file mode 100644 index 000000000..de2645fb9 --- /dev/null +++ b/test-suite/standalone/test-list.c @@ -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 +#include +#include + +/* 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; +} -- 2.20.1