1*11be35a1SLionel Sambuc /* $NetBSD: t_clearerr.c,v 1.1 2011/05/01 16:36:37 jruoho Exp $ */
2*11be35a1SLionel Sambuc
3*11be35a1SLionel Sambuc /*
4*11be35a1SLionel Sambuc * Copyright (c) 2009, Stathis Kamperis
5*11be35a1SLionel Sambuc * All rights reserved.
6*11be35a1SLionel Sambuc
7*11be35a1SLionel Sambuc * Redistribution and use in source and binary forms, with or without
8*11be35a1SLionel Sambuc * modification, are permitted provided that the following conditions
9*11be35a1SLionel Sambuc * are met:
10*11be35a1SLionel Sambuc * 1. Redistributions of source code must retain the above copyright
11*11be35a1SLionel Sambuc * notice, this list of conditions and the following disclaimer.
12*11be35a1SLionel Sambuc * 2. Redistributions in binary form must reproduce the above copyright
13*11be35a1SLionel Sambuc * notice, this list of conditions and the following disclaimer in the
14*11be35a1SLionel Sambuc * documentation and/or other materials provided with the distribution.
15*11be35a1SLionel Sambuc *
16*11be35a1SLionel Sambuc * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17*11be35a1SLionel Sambuc * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18*11be35a1SLionel Sambuc * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
19*11be35a1SLionel Sambuc * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
20*11be35a1SLionel Sambuc * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
21*11be35a1SLionel Sambuc * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
22*11be35a1SLionel Sambuc * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
23*11be35a1SLionel Sambuc * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
24*11be35a1SLionel Sambuc * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
25*11be35a1SLionel Sambuc * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
26*11be35a1SLionel Sambuc * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27*11be35a1SLionel Sambuc * SUCH DAMAGE.
28*11be35a1SLionel Sambuc */
29*11be35a1SLionel Sambuc #include <sys/cdefs.h>
30*11be35a1SLionel Sambuc __RCSID("$NetBSD: t_clearerr.c,v 1.1 2011/05/01 16:36:37 jruoho Exp $");
31*11be35a1SLionel Sambuc
32*11be35a1SLionel Sambuc #include <atf-c.h>
33*11be35a1SLionel Sambuc #include <errno.h>
34*11be35a1SLionel Sambuc #include <stdio.h>
35*11be35a1SLionel Sambuc
36*11be35a1SLionel Sambuc static const char path[] = "/etc/passwd";
37*11be35a1SLionel Sambuc
38*11be35a1SLionel Sambuc ATF_TC(clearerr_basic);
ATF_TC_HEAD(clearerr_basic,tc)39*11be35a1SLionel Sambuc ATF_TC_HEAD(clearerr_basic, tc)
40*11be35a1SLionel Sambuc {
41*11be35a1SLionel Sambuc atf_tc_set_md_var(tc, "descr", "A basic test of clearerr(3)");
42*11be35a1SLionel Sambuc }
43*11be35a1SLionel Sambuc
ATF_TC_BODY(clearerr_basic,tc)44*11be35a1SLionel Sambuc ATF_TC_BODY(clearerr_basic, tc)
45*11be35a1SLionel Sambuc {
46*11be35a1SLionel Sambuc char buf[2048];
47*11be35a1SLionel Sambuc FILE *fp;
48*11be35a1SLionel Sambuc
49*11be35a1SLionel Sambuc fp = fopen(path, "r");
50*11be35a1SLionel Sambuc ATF_REQUIRE(fp != NULL);
51*11be35a1SLionel Sambuc
52*11be35a1SLionel Sambuc while (feof(fp) == 0)
53*11be35a1SLionel Sambuc (void)fread(buf, sizeof(buf), 1, fp);
54*11be35a1SLionel Sambuc
55*11be35a1SLionel Sambuc ATF_REQUIRE(feof(fp) != 0);
56*11be35a1SLionel Sambuc
57*11be35a1SLionel Sambuc errno = 0;
58*11be35a1SLionel Sambuc clearerr(fp);
59*11be35a1SLionel Sambuc
60*11be35a1SLionel Sambuc ATF_REQUIRE(errno == 0);
61*11be35a1SLionel Sambuc ATF_REQUIRE(feof(fp) == 0);
62*11be35a1SLionel Sambuc ATF_REQUIRE(fclose(fp) != EOF);
63*11be35a1SLionel Sambuc }
64*11be35a1SLionel Sambuc
65*11be35a1SLionel Sambuc ATF_TC(clearerr_err);
ATF_TC_HEAD(clearerr_err,tc)66*11be35a1SLionel Sambuc ATF_TC_HEAD(clearerr_err, tc)
67*11be35a1SLionel Sambuc {
68*11be35a1SLionel Sambuc atf_tc_set_md_var(tc, "descr", "Test that clearerr(3) does not fail");
69*11be35a1SLionel Sambuc }
70*11be35a1SLionel Sambuc
ATF_TC_BODY(clearerr_err,tc)71*11be35a1SLionel Sambuc ATF_TC_BODY(clearerr_err, tc)
72*11be35a1SLionel Sambuc {
73*11be35a1SLionel Sambuc FILE *fp;
74*11be35a1SLionel Sambuc
75*11be35a1SLionel Sambuc fp = fopen(path, "r");
76*11be35a1SLionel Sambuc
77*11be35a1SLionel Sambuc ATF_REQUIRE(fp != NULL);
78*11be35a1SLionel Sambuc ATF_REQUIRE(fclose(fp) == 0);
79*11be35a1SLionel Sambuc
80*11be35a1SLionel Sambuc errno = 0;
81*11be35a1SLionel Sambuc clearerr(fp);
82*11be35a1SLionel Sambuc
83*11be35a1SLionel Sambuc ATF_REQUIRE(errno == 0);
84*11be35a1SLionel Sambuc }
85*11be35a1SLionel Sambuc
ATF_TP_ADD_TCS(tp)86*11be35a1SLionel Sambuc ATF_TP_ADD_TCS(tp)
87*11be35a1SLionel Sambuc {
88*11be35a1SLionel Sambuc
89*11be35a1SLionel Sambuc ATF_TP_ADD_TC(tp, clearerr_basic);
90*11be35a1SLionel Sambuc ATF_TP_ADD_TC(tp, clearerr_err);
91*11be35a1SLionel Sambuc
92*11be35a1SLionel Sambuc return atf_no_error();
93*11be35a1SLionel Sambuc }
94