1/*
2 * Automated Testing Framework (atf)
3 *
4 * Copyright (c) 2008 The NetBSD Foundation, Inc.
5 * All rights reserved.
6 *
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.
15 *
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.
28 */
29
30#include <atf-c.h>
31
32#include "atf-c/error.h"
33
34ATF_TC(pass);
35ATF_TC_HEAD(pass, tc)
36{
37    atf_tc_set_md_var(tc, "descr", "An empty test case that always passes");
38}
39ATF_TC_BODY(pass, tc)
40{
41    atf_tc_pass();
42}
43
44ATF_TC(fail);
45ATF_TC_HEAD(fail, tc)
46{
47    atf_tc_set_md_var(tc, "descr", "An empty test case that always fails");
48}
49ATF_TC_BODY(fail, tc)
50{
51    atf_tc_fail("On purpose");
52}
53
54ATF_TC(skip);
55ATF_TC_HEAD(skip, tc)
56{
57    atf_tc_set_md_var(tc, "descr", "An empty test case that is always "
58                      "skipped");
59}
60ATF_TC_BODY(skip, tc)
61{
62    atf_tc_skip("By design");
63}
64
65ATF_TC(default);
66ATF_TC_HEAD(default, tc)
67{
68    atf_tc_set_md_var(tc, "descr", "A test case that passes without "
69                      "explicitly stating it");
70}
71ATF_TC_BODY(default, tc)
72{
73}
74
75ATF_TP_ADD_TCS(tp)
76{
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);
81
82    return atf_no_error();
83}
84