No empty .Rs/.Re
[netbsd-mini2440.git] / external / bsd / atf / dist / tests / bootstrap / h_tp_basic_c.c
blobff106e7863cfdedc7cf2f1ac68acd02d8a819c02
1 /*
2 * Automated Testing Framework (atf)
4 * Copyright (c) 2008 The NetBSD Foundation, Inc.
5 * All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
16 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND
17 * CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
18 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
19 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS BE LIABLE FOR ANY
21 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
23 * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
25 * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
26 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
27 * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 #include <atf-c.h>
32 #include "atf-c/error.h"
34 ATF_TC(pass);
35 ATF_TC_HEAD(pass, tc)
37 atf_tc_set_md_var(tc, "descr", "An empty test case that always passes");
39 ATF_TC_BODY(pass, tc)
41 atf_tc_pass();
44 ATF_TC(fail);
45 ATF_TC_HEAD(fail, tc)
47 atf_tc_set_md_var(tc, "descr", "An empty test case that always fails");
49 ATF_TC_BODY(fail, tc)
51 atf_tc_fail("On purpose");
54 ATF_TC(skip);
55 ATF_TC_HEAD(skip, tc)
57 atf_tc_set_md_var(tc, "descr", "An empty test case that is always "
58 "skipped");
60 ATF_TC_BODY(skip, tc)
62 atf_tc_skip("By design");
65 ATF_TC(default);
66 ATF_TC_HEAD(default, tc)
68 atf_tc_set_md_var(tc, "descr", "A test case that passes without "
69 "explicitly stating it");
71 ATF_TC_BODY(default, tc)
75 ATF_TP_ADD_TCS(tp)
77 ATF_TP_ADD_TC(tp, pass);
78 ATF_TP_ADD_TC(tp, fail);
79 ATF_TP_ADD_TC(tp, skip);
80 ATF_TP_ADD_TC(tp, default);
82 return atf_no_error();