Source-Changes-HG archive

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

[src/trunk]: src Move the test for mktemp(3) to the right place.



details:   https://anonhg.NetBSD.org/src/rev/544600548aef
branches:  trunk
changeset: 935193:544600548aef
user:      jruoho <jruoho%NetBSD.org@localhost>
date:      Sat Jun 27 09:45:57 2020 +0000

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

diffstat:

 distrib/sets/lists/tests/mi      |   5 ++-
 tests/lib/libc/stdio/Makefile    |   3 +-
 tests/lib/libc/stdio/t_mktemp.c  |  54 ----------------------------------------
 tests/lib/libc/stdlib/Makefile   |   3 +-
 tests/lib/libc/stdlib/t_mktemp.c |  54 ++++++++++++++++++++++++++++++++++++++++
 5 files changed, 60 insertions(+), 59 deletions(-)

diffs (176 lines):

diff -r b16b107c2c74 -r 544600548aef distrib/sets/lists/tests/mi
--- a/distrib/sets/lists/tests/mi       Sat Jun 27 09:28:15 2020 +0000
+++ b/distrib/sets/lists/tests/mi       Sat Jun 27 09:45:57 2020 +0000
@@ -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
diff -r b16b107c2c74 -r 544600548aef tests/lib/libc/stdio/Makefile
--- a/tests/lib/libc/stdio/Makefile     Sat Jun 27 09:28:15 2020 +0000
+++ b/tests/lib/libc/stdio/Makefile     Sat Jun 27 09:45:57 2020 +0000
@@ -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_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
diff -r b16b107c2c74 -r 544600548aef tests/lib/libc/stdio/t_mktemp.c
--- a/tests/lib/libc/stdio/t_mktemp.c   Sat Jun 27 09:28:15 2020 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,54 +0,0 @@
-/* $NetBSD: t_mktemp.c,v 1.1 2013/04/22 21:05:12 christos 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 2013/04/22 21:05:12 christos 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();
-}
diff -r b16b107c2c74 -r 544600548aef tests/lib/libc/stdlib/Makefile
--- a/tests/lib/libc/stdlib/Makefile    Sat Jun 27 09:28:15 2020 +0000
+++ b/tests/lib/libc/stdlib/Makefile    Sat Jun 27 09:45:57 2020 +0000
@@ -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_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
diff -r b16b107c2c74 -r 544600548aef tests/lib/libc/stdlib/t_mktemp.c
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/lib/libc/stdlib/t_mktemp.c  Sat Jun 27 09:45:57 2020 +0000
@@ -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();
+}



Home | Main Index | Thread Index | Old Index