Module Name: src
Committed By: christos
Date: Mon Oct 11 15:48:58 UTC 2010
Modified Files:
src/tests/lib/libc/gen: t_glob_star.c
Log Message:
use "RZ()" instead of ATF_CHECK(), since ATF_CHECK does not deal with errno.
This is repulsive, specially the part about hard-coding the h_macros.h file
in the c code.
To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/tests/lib/libc/gen/t_glob_star.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/gen/t_glob_star.c
diff -u src/tests/lib/libc/gen/t_glob_star.c:1.2 src/tests/lib/libc/gen/t_glob_star.c:1.3
--- src/tests/lib/libc/gen/t_glob_star.c:1.2 Mon Oct 11 11:16:01 2010
+++ src/tests/lib/libc/gen/t_glob_star.c Mon Oct 11 11:48:57 2010
@@ -1,4 +1,4 @@
-/* $NetBSD: t_glob_star.c,v 1.2 2010/10/11 15:16:01 christos Exp $ */
+/* $NetBSD: t_glob_star.c,v 1.3 2010/10/11 15:48:57 christos 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.2 2010/10/11 15:16:01 christos Exp $");
+__RCSID("$NetBSD: t_glob_star.c,v 1.3 2010/10/11 15:48:57 christos Exp $");
#include <atf-c.h>
@@ -46,6 +46,8 @@
#include <string.h>
#include <errno.h>
+#include "../../../h_macros.h"
+
#ifdef DEBUG
#define DPRINTF(a) printf a
@@ -178,7 +180,7 @@
gl.gl_stat = gl_stat;
gl.gl_lstat = gl_lstat;
- ATF_CHECK(glob(p, GLOB_ALTDIRFUNC | flags, NULL, &gl) == 0);
+ RZ(glob(p, GLOB_ALTDIRFUNC | flags, NULL, &gl));
for (i = 0; i < gl.gl_pathc; i++)
DPRINTF(("%s\n", gl.gl_pathv[i]));