Module Name:    src
Committed By:   pgoyette
Date:           Fri Jan  7 02:47:41 UTC 2011

Modified Files:
        src/tests/lib/libc: Makefile
Added Files:
        src/tests/lib/libc: t_cerror.c
        src/tests/lib/libc/ttyio: Makefile t_ttyio.c

Log Message:
Atf-ify a couple more tests


To generate a diff of this commit:
cvs rdiff -u -r1.22 -r1.23 src/tests/lib/libc/Makefile
cvs rdiff -u -r0 -r1.1 src/tests/lib/libc/t_cerror.c
cvs rdiff -u -r0 -r1.1 src/tests/lib/libc/ttyio/Makefile \
    src/tests/lib/libc/ttyio/t_ttyio.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/tests/lib/libc/Makefile
diff -u src/tests/lib/libc/Makefile:1.22 src/tests/lib/libc/Makefile:1.23
--- src/tests/lib/libc/Makefile:1.22	Thu Jan  6 17:20:48 2011
+++ src/tests/lib/libc/Makefile	Fri Jan  7 02:47:40 2011
@@ -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

Added files:

Index: src/tests/lib/libc/t_cerror.c
diff -u /dev/null src/tests/lib/libc/t_cerror.c:1.1
--- /dev/null	Fri Jan  7 02:47:41 2011
+++ src/tests/lib/libc/t_cerror.c	Fri Jan  7 02:47:40 2011
@@ -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();
+}

Index: src/tests/lib/libc/ttyio/Makefile
diff -u /dev/null src/tests/lib/libc/ttyio/Makefile:1.1
--- /dev/null	Fri Jan  7 02:47:41 2011
+++ src/tests/lib/libc/ttyio/Makefile	Fri Jan  7 02:47:41 2011
@@ -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>
Index: src/tests/lib/libc/ttyio/t_ttyio.c
diff -u /dev/null src/tests/lib/libc/ttyio/t_ttyio.c:1.1
--- /dev/null	Fri Jan  7 02:47:41 2011
+++ src/tests/lib/libc/ttyio/t_ttyio.c	Fri Jan  7 02:47:41 2011
@@ -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;
+	}
+
+	/* wait for last child */
+	sa.sa_handler = SIG_DFL;
+	REQUIRE_ERRNO(sigaction(SIGCHLD, &sa, NULL), -1);
+	(void) wait(NULL);
+
+	ATF_REQUIRE_EQ(rc, 0);
+}
+
+ATF_TP_ADD_TCS(tp)
+{
+	ATF_TP_ADD_TC(tp, ioctl);
+
+	return atf_no_error();
+}

Reply via email to