Source-Changes-HG archive

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

[src/trunk]: src/tests/lib/libc Atf-ify a couple more tests



details:   https://anonhg.NetBSD.org/src/rev/f3669a761fa5
branches:  trunk
changeset: 760532:f3669a761fa5
user:      pgoyette <pgoyette%NetBSD.org@localhost>
date:      Fri Jan 07 02:47:40 2011 +0000

description:
Atf-ify a couple more tests

diffstat:

 tests/lib/libc/Makefile        |    5 +-
 tests/lib/libc/t_cerror.c      |  112 +++++++++++++++++++++++++++++
 tests/lib/libc/ttyio/Makefile  |   11 ++
 tests/lib/libc/ttyio/t_ttyio.c |  156 +++++++++++++++++++++++++++++++++++++++++
 4 files changed, 282 insertions(+), 2 deletions(-)

diffs (truncated from 314 to 300 lines):

diff -r af0042413f81 -r f3669a761fa5 tests/lib/libc/Makefile
--- a/tests/lib/libc/Makefile   Fri Jan 07 01:11:03 2011 +0000
+++ b/tests/lib/libc/Makefile   Fri Jan 07 02:47:40 2011 +0000
@@ -1,9 +1,9 @@
-# $NetBSD: Makefile,v 1.22 2011/01/06 17:20:48 pgoyette Exp $
+# $NetBSD: Makefile,v 1.23 2011/01/07 02:47:40 pgoyette Exp $
 
 .include <bsd.own.mk>
 .include <bsd.sys.mk>
 
-TESTS_SUBDIRS+=        gen hash ieeefp setjmp stdlib stdio string
+TESTS_SUBDIRS+=        gen hash ieeefp setjmp stdlib stdio string ttyio
 
 .if ${HAS_SSP} == "yes"
 TESTS_SUBDIRS+=        ssp
@@ -11,6 +11,7 @@
 
 TESTSDIR=      ${TESTSBASE}/lib/libc
 
+TESTS_C+=      t_cerror
 TESTS_C+=      t_clone
 TESTS_C+=      t_context
 TESTS_C+=      t_convfp
diff -r af0042413f81 -r f3669a761fa5 tests/lib/libc/t_cerror.c
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/lib/libc/t_cerror.c Fri Jan 07 02:47:40 2011 +0000
@@ -0,0 +1,112 @@
+/* $NetBSD: t_cerror.c,v 1.1 2011/01/07 02:47:40 pgoyette Exp $ */
+
+/*-
+ * Copyright (c) 2008 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.
+ */
+
+/*
+ * Copyright (c) 2003 Christopher G. Demetriou
+ * 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.
+ * 3. All advertising materials mentioning features or use of this software
+ *    must display the following acknowledgement:
+ *          This product includes software developed for the
+ *          NetBSD Project.  See http://www.NetBSD.org/ for
+ *          information about NetBSD.
+ * 4. The name of the author may not be used to endorse or promote products
+ *    derived from this software without specific prior written permission.
+ * 
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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.
+ * 
+ * <<Id: LICENSE,v 1.2 2000/06/14 15:57:33 cgd Exp>>
+ */
+
+#include <sys/cdefs.h>
+__COPYRIGHT("@(#) Copyright (c) 2008\
+ The NetBSD Foundation, inc. All rights reserved.");
+__RCSID("$NetBSD: t_cerror.c,v 1.1 2011/01/07 02:47:40 pgoyette Exp $");
+
+#include <errno.h>
+#include <unistd.h>
+
+#include <atf-c.h>
+
+ATF_TC(cerror_32);
+ATF_TC_HEAD(cerror_32, tc)
+{
+       atf_tc_set_md_var(tc, "descr",
+               "Checks that libc's cerror (error handler) "
+               "correctly handles 32-bit error codes");
+}
+ATF_TC_BODY(cerror_32, tc)
+{
+       /* Make sure file desc 4 is closed. */
+       (void)close(4);
+
+       /* Check error and 32-bit return code.*/
+       errno = 0;
+       ATF_REQUIRE_EQ(close(4), -1);
+       ATF_REQUIRE_EQ(errno, EBADF);
+}
+
+ATF_TC(cerror_64);
+ATF_TC_HEAD(cerror_64, tc)
+{
+       atf_tc_set_md_var(tc, "descr",
+               "Checks that libc's cerror (error handler) "
+               "correctly handles 64-bit error codes");
+}
+ATF_TC_BODY(cerror_64, tc)
+{
+       /* Check error and 64-bit return code.*/
+       errno = 0;
+       ATF_REQUIRE_EQ(lseek(4, (off_t) 0, SEEK_SET), (off_t) -1);
+       ATF_REQUIRE_EQ(errno, EBADF);
+}
+
+ATF_TP_ADD_TCS(tp)
+{
+       ATF_TP_ADD_TC(tp, cerror_32);
+       ATF_TP_ADD_TC(tp, cerror_64);
+
+       return atf_no_error();
+}
diff -r af0042413f81 -r f3669a761fa5 tests/lib/libc/ttyio/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/lib/libc/ttyio/Makefile     Fri Jan 07 02:47:40 2011 +0000
@@ -0,0 +1,11 @@
+# $NetBSD: Makefile,v 1.1 2011/01/07 02:47:41 pgoyette Exp $
+
+.include <bsd.own.mk>
+
+TESTSDIR=      ${TESTSBASE}/lib/libc/ttyio
+
+TESTS_C+=      t_ttyio
+
+LDADD.t_ttyio+=        -lutil
+
+.include <bsd.test.mk>
diff -r af0042413f81 -r f3669a761fa5 tests/lib/libc/ttyio/t_ttyio.c
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/lib/libc/ttyio/t_ttyio.c    Fri Jan 07 02:47:40 2011 +0000
@@ -0,0 +1,156 @@
+/*     $NetBSD: t_ttyio.c,v 1.1 2011/01/07 02:47:41 pgoyette Exp $ */
+
+/*
+ * Copyright (c) 2001, 2008 The NetBSD Foundation, Inc.
+ * All rights reserved.
+ *
+ * This code is derived from software contributed to The NetBSD Foundation
+ * by Andrew Brown.
+ *
+ * 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) 2008\
+ The NetBSD Foundation, inc. All rights reserved.");
+__RCSID("$NetBSD: t_ttyio.c,v 1.1 2011/01/07 02:47:41 pgoyette Exp $");
+
+#include <sys/types.h>
+#include <sys/wait.h>
+
+#include <err.h>
+#include <errno.h>
+#include <signal.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <termios.h>
+#include <unistd.h>
+
+#if defined(__NetBSD__)
+#include <util.h>
+#elif defined(__bsdi__)
+int openpty(int *, int *, char *, struct termios *, struct winsize *);
+#elif defined(__FreeBSD__)
+#include <libutil.h>
+#else
+#error where openpty?
+#endif
+
+#include <atf-c.h>
+
+#define REQUIRE_ERRNO(x, v) ATF_REQUIRE_MSG(x != v, "%s: %s", #x, strerror(errno))
+
+ATF_TC(ioctl);
+ATF_TC_HEAD(ioctl, tc)
+{
+       atf_tc_set_md_var(tc, "descr",
+               "Checks that ioctl calls are restarted "
+               "properly after being interrupted");
+}
+
+/* ARGSUSED */
+static void
+sigchld(int nsig)
+{
+       REQUIRE_ERRNO(wait(NULL), -1);
+}
+
+ATF_TC_BODY(ioctl, tc)
+{
+       int m, s, rc;
+       char name[128], buf[128];
+       struct termios term;
+       struct sigaction sa;
+
+       /* unbuffer stdout */
+       setbuf(stdout, NULL);
+
+       /* get terminal settings for later use */
+       REQUIRE_ERRNO(tcgetattr(STDIN_FILENO, &term), -1);
+
+       /* get a tty */
+       REQUIRE_ERRNO(openpty(&m, &s, name, &term, NULL), -1);
+
+       switch (fork()) {
+       case -1:
+               atf_tc_fail("fork(): %s", strerror(errno));
+               /* NOTREACHED */
+       case 0:
+               /* wait for parent to get set up */
+               (void)sleep(1);
+               (void)printf("child1: exiting\n");
+               exit(0);
+               /* NOTREACHED */
+       default:
+               (void)printf("parent: spawned child1\n");
+               break;
+       }
+
+       switch (fork()) {
+       case -1:
+               atf_tc_fail("fork(): %s", strerror(errno));
+               /* NOTREACHED */
+       case 0:
+               /* wait for parent to get upset */
+               (void)sleep(2);
+               /* drain the tty q */
+               if (read(m, buf, sizeof(buf)) == -1)
+                       err(1, "read");
+               (void)printf("child2: exiting\n");
+               exit(0);
+               /* NOTREACHED */
+       default:
+               (void)printf("parent: spawned child2\n");
+               break;
+       }
+
+       /* set up a restarting signal handler */
+       (void)sigemptyset(&sa.sa_mask);
+       sa.sa_handler = sigchld;
+       sa.sa_flags = SA_RESTART;
+       REQUIRE_ERRNO(sigaction(SIGCHLD, &sa, NULL), -1);
+       
+       /* put something in the output q */
+       REQUIRE_ERRNO(write(s, "Hello world\n", 12), -1);
+
+       /* ask for output to drain but don't drain it */
+       rc = 0;
+       if (tcsetattr(s, TCSADRAIN, &term) == -1) {
+               (void)printf("parent: tcsetattr: %s\n", strerror(errno));
+               rc = 1;
+       }
+



Home | Main Index | Thread Index | Old Index