Move 't_glob_star' to 't_glob' for glob(3).

This commit is contained in:
jruoho 2011-07-07 15:53:27 +00:00
parent 9b5c52594e
commit cc0041648e
3 changed files with 9 additions and 7 deletions

View File

@ -1,4 +1,4 @@
# $NetBSD: mi,v 1.371 2011/07/07 15:50:23 jruoho Exp $
# $NetBSD: mi,v 1.372 2011/07/07 15:53:27 jruoho Exp $
#
# Note: don't delete entries from here - mark them as "obsolete" instead.
#
@ -361,7 +361,8 @@
./usr/libdata/debug/usr/tests/lib/libc/gen/t_fmtcheck.debug tests-lib-debug debug,atf
./usr/libdata/debug/usr/tests/lib/libc/gen/t_getcwd.debug tests-lib-debug debug,atf
./usr/libdata/debug/usr/tests/lib/libc/gen/t_getgrent.debug tests-lib-debug debug,atf
./usr/libdata/debug/usr/tests/lib/libc/gen/t_glob_star.debug tests-lib-debug debug,atf
./usr/libdata/debug/usr/tests/lib/libc/gen/t_glob.debug tests-lib-debug debug,atf
./usr/libdata/debug/usr/tests/lib/libc/gen/t_glob_star.debug tests-obsolete obsolete
./usr/libdata/debug/usr/tests/lib/libc/gen/t_humanize_number.debug tests-lib-debug debug,atf
./usr/libdata/debug/usr/tests/lib/libc/gen/t_ldexp.debug tests-lib-debug debug,atf
./usr/libdata/debug/usr/tests/lib/libc/gen/t_nice.debug tests-lib-debug debug,atf
@ -1863,7 +1864,8 @@
./usr/tests/lib/libc/gen/t_fmtcheck tests-lib-tests atf
./usr/tests/lib/libc/gen/t_getcwd tests-lib-tests atf
./usr/tests/lib/libc/gen/t_getgrent tests-lib-tests atf
./usr/tests/lib/libc/gen/t_glob_star tests-lib-tests atf
./usr/tests/lib/libc/gen/t_glob tests-lib-tests atf
./usr/tests/lib/libc/gen/t_glob_star tests-obsolete obsolete
./usr/tests/lib/libc/gen/t_humanize_number tests-lib-tests atf
./usr/tests/lib/libc/gen/t_ldexp tests-lib-tests atf
./usr/tests/lib/libc/gen/t_nice tests-lib-tests atf

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.27 2011/07/07 10:02:53 jruoho Exp $
# $NetBSD: Makefile,v 1.28 2011/07/07 15:53:27 jruoho Exp $
.include <bsd.own.mk>
@ -12,7 +12,7 @@ TESTS_C+= t_dir
TESTS_C+= t_fmtcheck
TESTS_C+= t_getcwd
TESTS_C+= t_getgrent
TESTS_C+= t_glob_star
TESTS_C+= t_glob
TESTS_C+= t_humanize_number
TESTS_C+= t_ldexp
TESTS_C+= t_nice

View File

@ -1,4 +1,4 @@
/* $NetBSD: t_glob_star.c,v 1.7 2011/07/07 09:49:59 jruoho Exp $ */
/* $NetBSD: t_glob.c,v 1.1 2011/07/07 15:53:27 jruoho Exp $ */
/*-
* Copyright (c) 2010 The NetBSD Foundation, Inc.
* All rights reserved.
@ -32,7 +32,7 @@
*/
#include <sys/cdefs.h>
__RCSID("$NetBSD: t_glob_star.c,v 1.7 2011/07/07 09:49:59 jruoho Exp $");
__RCSID("$NetBSD: t_glob.c,v 1.1 2011/07/07 15:53:27 jruoho Exp $");
#include <atf-c.h>