Module Name:    src
Committed By:   jruoho
Date:           Sat Jun 27 09:45:57 UTC 2020

Modified Files:
        src/distrib/sets/lists/tests: mi
        src/tests/lib/libc/stdio: Makefile
        src/tests/lib/libc/stdlib: Makefile
Added Files:
        src/tests/lib/libc/stdlib: t_mktemp.c
Removed Files:
        src/tests/lib/libc/stdio: t_mktemp.c

Log Message:
Move the test for mktemp(3) to the right place.


To generate a diff of this commit:
cvs rdiff -u -r1.858 -r1.859 src/distrib/sets/lists/tests/mi
cvs rdiff -u -r1.12 -r1.13 src/tests/lib/libc/stdio/Makefile
cvs rdiff -u -r1.1 -r0 src/tests/lib/libc/stdio/t_mktemp.c
cvs rdiff -u -r1.28 -r1.29 src/tests/lib/libc/stdlib/Makefile
cvs rdiff -u -r0 -r1.1 src/tests/lib/libc/stdlib/t_mktemp.c

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

Modified files:

Index: src/distrib/sets/lists/tests/mi
diff -u src/distrib/sets/lists/tests/mi:1.858 src/distrib/sets/lists/tests/mi:1.859
--- src/distrib/sets/lists/tests/mi:1.858	Sat Jun 27 08:50:46 2020
+++ src/distrib/sets/lists/tests/mi	Sat Jun 27 09:45:57 2020
@@ -1,4 +1,4 @@
-# $NetBSD: mi,v 1.858 2020/06/27 08:50:46 jruoho Exp $
+# $NetBSD: mi,v 1.859 2020/06/27 09:45:57 jruoho Exp $
 #
 # Note: don't delete entries from here - mark them as "obsolete" instead.
 #
@@ -3052,7 +3052,7 @@
 ./usr/tests/lib/libc/stdio/t_fopen		tests-lib-tests		compattestfile,atf
 ./usr/tests/lib/libc/stdio/t_format		tests-obsolete		obsolete
 ./usr/tests/lib/libc/stdio/t_fputc		tests-lib-tests		compattestfile,atf
-./usr/tests/lib/libc/stdio/t_mktemp		tests-lib-tests		compattestfile,atf
+./usr/tests/lib/libc/stdio/t_mktemp		tests-obsolete		obsolete
 ./usr/tests/lib/libc/stdio/t_open_memstream	tests-lib-tests		compattestfile,atf
 ./usr/tests/lib/libc/stdio/t_popen		tests-lib-tests		compattestfile,atf
 ./usr/tests/lib/libc/stdio/t_printf		tests-lib-tests		compattestfile,atf
@@ -3075,6 +3075,7 @@
 ./usr/tests/lib/libc/stdlib/t_getopt		tests-lib-tests		compattestfile,atf
 ./usr/tests/lib/libc/stdlib/t_hsearch		tests-lib-tests		compattestfile,atf
 ./usr/tests/lib/libc/stdlib/t_mi_vector_hash	tests-lib-tests		compattestfile,atf
+./usr/tests/lib/libc/stdlib/t_mktemp		tests-lib-tests		compattestfile,atf
 ./usr/tests/lib/libc/stdlib/t_posix_memalign	tests-lib-tests		compattestfile,atf
 ./usr/tests/lib/libc/stdlib/t_random		tests-lib-tests		compattestfile,atf
 ./usr/tests/lib/libc/stdlib/t_strtod		tests-lib-tests		compattestfile,atf

Index: src/tests/lib/libc/stdio/Makefile
diff -u src/tests/lib/libc/stdio/Makefile:1.12 src/tests/lib/libc/stdio/Makefile:1.13
--- src/tests/lib/libc/stdio/Makefile:1.12	Wed Oct 15 21:55:34 2014
+++ src/tests/lib/libc/stdio/Makefile	Sat Jun 27 09:45:57 2020
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.12 2014/10/15 21:55:34 justin Exp $
+# $NetBSD: Makefile,v 1.13 2020/06/27 09:45:57 jruoho Exp $
 
 .include <bsd.own.mk>
 
@@ -10,7 +10,6 @@ TESTS_C+=	t_fmemopen
 TESTS_C+=	t_fopen
 TESTS_C+=	t_open_memstream
 TESTS_C+=	t_fputc
-TESTS_C+=	t_mktemp
 TESTS_C+=	t_popen
 TESTS_C+=	t_printf
 TESTS_C+=	t_scanf

Index: src/tests/lib/libc/stdlib/Makefile
diff -u src/tests/lib/libc/stdlib/Makefile:1.28 src/tests/lib/libc/stdlib/Makefile:1.29
--- src/tests/lib/libc/stdlib/Makefile:1.28	Tue Dec 22 14:27:14 2015
+++ src/tests/lib/libc/stdlib/Makefile	Sat Jun 27 09:45:57 2020
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.28 2015/12/22 14:27:14 christos Exp $
+# $NetBSD: Makefile,v 1.29 2020/06/27 09:45:57 jruoho Exp $
 
 .include <bsd.own.mk>
 
@@ -11,6 +11,7 @@ TESTS_C+=	t_getenv
 TESTS_C+=	t_getenv_thread
 TESTS_C+=	t_exit
 TESTS_C+=	t_hsearch
+TESTS_C+=	t_mktemp
 TESTS_C+=	t_mi_vector_hash
 TESTS_C+=	t_posix_memalign
 TESTS_C+=	t_random

Added files:

Index: src/tests/lib/libc/stdlib/t_mktemp.c
diff -u /dev/null src/tests/lib/libc/stdlib/t_mktemp.c:1.1
--- /dev/null	Sat Jun 27 09:45:57 2020
+++ src/tests/lib/libc/stdlib/t_mktemp.c	Sat Jun 27 09:45:57 2020
@@ -0,0 +1,54 @@
+/* $NetBSD: t_mktemp.c,v 1.1 2020/06/27 09:45:57 jruoho Exp $ */
+
+/*-
+ * Copyright (c) 2013 The NetBSD Foundation, Inc.
+ * All rights reserved.
+ *
+ * This code is derived from software contributed to The NetBSD Foundation
+ * by Christos Zoulas.
+ *
+ * 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>
+__RCSID("$NetBSD: t_mktemp.c,v 1.1 2020/06/27 09:45:57 jruoho Exp $");
+
+#include <atf-c.h>
+#include <stdlib.h>
+
+ATF_TC(mktemp_not_exist);
+ATF_TC_HEAD(mktemp_not_exist, tc)
+{
+	atf_tc_set_md_var(tc, "descr", "Test that mktemp does not fail on"
+	    " a path that does not exist");
+}
+
+ATF_TC_BODY(mktemp_not_exist, tc)
+{
+	char template[] = "I will barf/XXXXXX";
+	ATF_REQUIRE(mktemp(template) != NULL);
+}
+
+ATF_TP_ADD_TCS(tp)
+{
+	ATF_TP_ADD_TC(tp, mktemp_not_exist);
+	return atf_no_error();
+}

Reply via email to