Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src Atf-ify the atexit test



details:   https://anonhg.NetBSD.org/src/rev/6b219ec43ede
branches:  trunk
changeset: 760362:6b219ec43ede
user:      pgoyette <pgoyette%NetBSD.org@localhost>
date:      Mon Jan 03 19:01:47 2011 +0000

description:
Atf-ify the atexit test

diffstat:

 distrib/sets/lists/tests/mi |    5 +-
 tests/lib/libc/Makefile     |    6 +-
 tests/lib/libc/h_atexit.c   |  178 ++++++++++++++++++++++++++++++++++++++++++++
 tests/lib/libc/t_atexit.sh  |   54 +++++++++++++
 4 files changed, 240 insertions(+), 3 deletions(-)

diffs (truncated from 303 to 300 lines):

diff -r f92d5c29e4b4 -r 6b219ec43ede distrib/sets/lists/tests/mi
--- a/distrib/sets/lists/tests/mi       Mon Jan 03 18:55:41 2011 +0000
+++ b/distrib/sets/lists/tests/mi       Mon Jan 03 19:01:47 2011 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: mi,v 1.204 2011/01/02 22:06:40 pgoyette Exp $
+# $NetBSD: mi,v 1.205 2011/01/03 19:01:47 pgoyette Exp $
 #
 # Note: don't delete entries from here - mark them as "obsolete" instead.
 #
@@ -329,6 +329,7 @@
 ./usr/libdata/debug/usr/tests/lib/libc/gen/t_syslog_pthread.debug      tests-lib-debug         debug,atf
 ./usr/libdata/debug/usr/tests/lib/libc/gen/t_siginfo.debug             tests-lib-debug         debug,atf
 ./usr/libdata/debug/usr/tests/lib/libc/gen/t_vis.debug                 tests-lib-debug         debug,atf
+./usr/libdata/debug/usr/tests/lib/libc/h_atexit.debug                  tests-lib-debug         debug,atf
 ./usr/libdata/debug/usr/tests/lib/libc/h_protoent.debug                        tests-lib-debug         debug,atf
 ./usr/libdata/debug/usr/tests/lib/libc/h_servent.debug                 tests-lib-debug         debug,atf
 ./usr/libdata/debug/usr/tests/lib/libc/hash                            tests-lib-debug
@@ -1598,6 +1599,7 @@
 ./usr/tests/lib/libc/gen/t_syslog_pthread      tests-lib-tests         atf
 ./usr/tests/lib/libc/gen/t_siginfo             tests-lib-tests         atf
 ./usr/tests/lib/libc/gen/t_vis                 tests-lib-tests         atf
+./usr/tests/lib/libc/h_atexit                  tests-lib-tests         atf
 ./usr/tests/lib/libc/h_protoent                        tests-lib-tests         atf
 ./usr/tests/lib/libc/h_servent                 tests-lib-tests         atf
 ./usr/tests/lib/libc/hash                      tests-lib-tests
@@ -1659,6 +1661,7 @@
 ./usr/tests/lib/libc/string/t_string           tests-lib-tests         atf
 ./usr/tests/lib/libc/string/t_stresep          tests-lib-tests         atf
 ./usr/tests/lib/libc/string/t_swab             tests-lib-tests         atf
+./usr/tests/lib/libc/t_atexit                  tests-lib-tests         atf
 ./usr/tests/lib/libc/t_clone                   tests-lib-tests         atf
 ./usr/tests/lib/libc/t_context                 tests-lib-tests         atf
 ./usr/tests/lib/libc/t_convfp                  tests-lib-tests         atf
diff -r f92d5c29e4b4 -r 6b219ec43ede tests/lib/libc/Makefile
--- a/tests/lib/libc/Makefile   Mon Jan 03 18:55:41 2011 +0000
+++ b/tests/lib/libc/Makefile   Mon Jan 03 19:01:47 2011 +0000
@@ -1,9 +1,9 @@
-# $NetBSD: Makefile,v 1.17 2011/01/02 22:03:25 pgoyette Exp $
+# $NetBSD: Makefile,v 1.18 2011/01/03 19:01:47 pgoyette Exp $
 
 .include <bsd.own.mk>
 .include <bsd.sys.mk>
 
-TESTS_SUBDIRS+=        gen hash setjmp stdlib stdio string
+TESTS_SUBDIRS+=        gen hash locale setjmp stdlib stdio string
 
 .if ${MACHINE_ARCH} != "vax" && ${MACHINE_ARCH} != "m68000"
 TESTS_SUBDIRS+=        ieeefp
@@ -25,12 +25,14 @@
 TESTS_C+=      t_randomid
 TESTS_C+=      t_strptime
 
+TESTS_SH+=     t_atexit
 TESTS_SH+=     t_protoent
 TESTS_SH+=     t_servent
 
 BINDIR=                ${TESTSDIR}
 MKMAN=         no
 
+PROGS+=                h_atexit
 PROGS+=                h_protoent
 PROGS+=                h_servent
 
diff -r f92d5c29e4b4 -r 6b219ec43ede tests/lib/libc/h_atexit.c
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/lib/libc/h_atexit.c Mon Jan 03 19:01:47 2011 +0000
@@ -0,0 +1,178 @@
+/* $NetBSD: h_atexit.c,v 1.1 2011/01/03 19:01:47 pgoyette Exp $ */
+
+/*-
+ * Copyright (c) 2011 The NetBSD Foundation, Inc.
+ * All rights reserved.
+ *
+ * This code was contributed to The NetBSD Foundation by Jason R. Thorpe.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in the
+ *    documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
+ * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
+ * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
+ * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+ * POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#include <sys/cdefs.h>
+__COPYRIGHT("@(#) Copyright (c) 2011\
+ The NetBSD Foundation, inc. All rights reserved.");
+__RCSID("$NetBSD: h_atexit.c,v 1.1 2011/01/03 19:01:47 pgoyette Exp $");
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <signal.h>
+#include <string.h>
+#include <unistd.h>
+
+extern int __cxa_atexit(void (*func)(void *), void *, void *);
+extern void __cxa_finalize(void *);
+
+static int dso_handle_1;
+static int dso_handle_2;
+static int dso_handle_3;
+
+static int arg_1;
+static int arg_2;
+static int arg_3;
+
+static int exiting_state;
+
+#define        ASSERT(expr)                                                    \
+do {                                                                   \
+       if ((expr) == 0) {                                              \
+               write(STDERR_FILENO, __func__, strlen(__func__));       \
+               write(STDERR_FILENO, ": ", 2);                          \
+               write(STDERR_FILENO, __STRING(expr),                    \
+                     strlen(__STRING(expr)));                          \
+               write(STDERR_FILENO, "\n", 1);                          \
+               my_abort();                                             \
+       }                                                               \
+} while (/*CONSTCOND*/0)
+
+#define        SUCCESS()                                                       \
+do {                                                                   \
+       write(STDOUT_FILENO, __func__, strlen(__func__));               \
+       write(STDOUT_FILENO, "\n", 1);                                  \
+} while (/*CONSTCOND*/0)
+
+static void
+my_abort(void)
+{
+
+       kill(getpid(), SIGABRT);
+       /* NOTREACHED */
+}
+
+static void
+cxa_handler_5(void *arg)
+{
+       static int cxa_handler_5_called;
+
+       ASSERT(arg == (void *)&arg_1);
+       ASSERT(cxa_handler_5_called == 0);
+       ASSERT(exiting_state == 5);
+
+       exiting_state--;
+       cxa_handler_5_called = 1;
+       SUCCESS();
+}
+
+static void
+cxa_handler_4(void *arg)
+{
+       static int cxa_handler_4_called;
+
+       ASSERT(arg == (void *)&arg_1);
+       ASSERT(cxa_handler_4_called == 0);
+       ASSERT(exiting_state == 4);
+
+       exiting_state--;
+       cxa_handler_4_called = 1;
+       SUCCESS();
+}
+
+static void
+cxa_handler_3(void *arg)
+{
+       static int cxa_handler_3_called;
+
+       ASSERT(arg == (void *)&arg_2);
+       ASSERT(cxa_handler_3_called == 0);
+       ASSERT(exiting_state == 3);
+
+       exiting_state--;
+       cxa_handler_3_called = 1;
+       SUCCESS();
+}
+
+static void
+cxa_handler_2(void *arg)
+{
+       static int cxa_handler_2_called;
+
+       ASSERT(arg == (void *)&arg_3);
+       ASSERT(cxa_handler_2_called == 0);
+       ASSERT(exiting_state == 2);
+
+       exiting_state--;
+       cxa_handler_2_called = 1;
+       SUCCESS();
+}
+
+static void
+normal_handler_1(void)
+{
+       static int normal_handler_1_called;
+
+       ASSERT(normal_handler_1_called == 0);
+       ASSERT(exiting_state == 1);
+
+       exiting_state--;
+       normal_handler_1_called = 1;
+       SUCCESS();
+}
+
+static void
+normal_handler_0(void)
+{
+       static int normal_handler_0_called;
+
+       ASSERT(normal_handler_0_called == 0);
+       ASSERT(exiting_state == 0);
+
+       normal_handler_0_called = 1;
+       SUCCESS();
+}
+
+int
+main(int argc, char *argv[])
+{
+
+       exiting_state = 5;
+
+       ASSERT(0 == atexit(normal_handler_0));
+       ASSERT(0 == atexit(normal_handler_1));
+       ASSERT(0 == __cxa_atexit(cxa_handler_4, &arg_1, &dso_handle_1));
+       ASSERT(0 == __cxa_atexit(cxa_handler_5, &arg_1, &dso_handle_1));
+       ASSERT(0 == __cxa_atexit(cxa_handler_3, &arg_2, &dso_handle_2));
+       ASSERT(0 == __cxa_atexit(cxa_handler_2, &arg_3, &dso_handle_3));
+
+       __cxa_finalize(&dso_handle_1);
+       __cxa_finalize(&dso_handle_2);
+       exit(0);
+}
diff -r f92d5c29e4b4 -r 6b219ec43ede tests/lib/libc/t_atexit.sh
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/lib/libc/t_atexit.sh        Mon Jan 03 19:01:47 2011 +0000
@@ -0,0 +1,54 @@
+# $NetBSD: t_atexit.sh,v 1.1 2011/01/03 19:01:47 pgoyette Exp $
+#
+# Copyright (c) 2011 The NetBSD Foundation, Inc.
+# All rights reserved.
+#
+# Redistribution and use in source and binary forms, with or without
+# modification, are permitted provided that the following conditions
+# are met:
+# 1. Redistributions of source code must retain the above copyright
+#    notice, this list of conditions and the following disclaimer.
+# 2. Redistributions in binary form must reproduce the above copyright
+#    notice, this list of conditions and the following disclaimer in the
+#    documentation and/or other materials provided with the distribution.
+#
+# THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
+# ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
+# TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+# PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
+# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+# POSSIBILITY OF SUCH DAMAGE.
+#
+
+atf_test_case atexit
+atexit_head()
+{
+       atf_set "descr" "Checks atexit(3) and __cxa_atexit()/__cxa_finalize()"
+}
+atexit_body()
+{
+       $(atf_get_srcdir)/h_atexit >out \
+               || atf_fail "h_exit failed, see output of the test for details"
+
+       cat >exp <<EOF
+cxa_handler_5
+cxa_handler_4
+cxa_handler_3
+cxa_handler_2
+normal_handler_1
+normal_handler_0
+EOF
+
+       diff -Nru exp out \
+               || atf_fail "h_exit failed, see output of the test for details"
+}
+
+atf_init_test_cases()



Home | Main Index | Thread Index | Old Index