1275988Sngie/* Copyright (c) 2012 The NetBSD Foundation, Inc.
2240116Smarcel * All rights reserved.
3240116Smarcel *
4240116Smarcel * Redistribution and use in source and binary forms, with or without
5240116Smarcel * modification, are permitted provided that the following conditions
6240116Smarcel * are met:
7240116Smarcel * 1. Redistributions of source code must retain the above copyright
8240116Smarcel *    notice, this list of conditions and the following disclaimer.
9240116Smarcel * 2. Redistributions in binary form must reproduce the above copyright
10240116Smarcel *    notice, this list of conditions and the following disclaimer in the
11240116Smarcel *    documentation and/or other materials provided with the distribution.
12240116Smarcel *
13240116Smarcel * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND
14240116Smarcel * CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
15240116Smarcel * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
16240116Smarcel * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17240116Smarcel * IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS BE LIABLE FOR ANY
18240116Smarcel * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19240116Smarcel * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
20240116Smarcel * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
21240116Smarcel * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
22240116Smarcel * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
23240116Smarcel * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
24275988Sngie * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.  */
25240116Smarcel
26275988Sngie#include <atf-c.h>
27240116Smarcel
28240116SmarcelATF_TC(this_is_used);
29240116SmarcelATF_TC_HEAD(this_is_used, tc)
30240116Smarcel{
31240116Smarcel    atf_tc_set_md_var(tc, "descr", "A test case that is not referenced");
32240116Smarcel}
33240116SmarcelATF_TC_BODY(this_is_used, tc)
34240116Smarcel{
35240116Smarcel}
36240116Smarcel
37240116SmarcelATF_TC(this_is_unused);
38240116SmarcelATF_TC_HEAD(this_is_unused, tc)
39240116Smarcel{
40240116Smarcel    atf_tc_set_md_var(tc, "descr", "A test case that is referenced");
41240116Smarcel}
42240116SmarcelATF_TC_BODY(this_is_unused, tc)
43240116Smarcel{
44240116Smarcel}
45240116Smarcel
46240116SmarcelATF_TP_ADD_TCS(tp)
47240116Smarcel{
48240116Smarcel    ATF_TP_ADD_TC(tp, this_is_used);
49240116Smarcel    /* ATF_TP_ADD_TC(tp, this_is_unused); */
50240116Smarcel
51240116Smarcel    return atf_no_error();
52240116Smarcel}
53