14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt//
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt// Automated Testing Framework (atf)
51eba00c8f281eda4daac725c0c7d1373a93a5aaAndreas Gustafsson//
d63ae51ba337165172a9b50fd5d84805ffe50044Tinderbox User// Copyright (c) 2007 The NetBSD Foundation, Inc.
51eba00c8f281eda4daac725c0c7d1373a93a5aaAndreas Gustafsson// All rights reserved.
0c27b3fe77ac1d5094ba3521e8142d9e7973133fMark Andrews//
0c27b3fe77ac1d5094ba3521e8142d9e7973133fMark Andrews// Redistribution and use in source and binary forms, with or without
0c27b3fe77ac1d5094ba3521e8142d9e7973133fMark Andrews// modification, are permitted provided that the following conditions
51eba00c8f281eda4daac725c0c7d1373a93a5aaAndreas Gustafsson// are met:
19c7b1a0293498a3e36692c59646ed6e15ffc8d0Tinderbox User// 1. Redistributions of source code must retain the above copyright
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt// notice, this list of conditions and the following disclaimer.
83a28ca274521e15086fc39febde507bcc4e145eMark Andrews// 2. Redistributions in binary form must reproduce the above copyright
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt// notice, this list of conditions and the following disclaimer in the
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt// documentation and/or other materials provided with the distribution.
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt//
268a4475065fe6a8cd7cc707820982cf5e98f430Rob Austein// THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt// CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt// INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
268a4475065fe6a8cd7cc707820982cf5e98f430Rob Austein// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
268a4475065fe6a8cd7cc707820982cf5e98f430Rob Austein// IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS BE LIABLE FOR ANY
268a4475065fe6a8cd7cc707820982cf5e98f430Rob Austein// DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
268a4475065fe6a8cd7cc707820982cf5e98f430Rob Austein// DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
268a4475065fe6a8cd7cc707820982cf5e98f430Rob Austein// GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
268a4475065fe6a8cd7cc707820982cf5e98f430Rob Austein// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
268a4475065fe6a8cd7cc707820982cf5e98f430Rob Austein// IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
268a4475065fe6a8cd7cc707820982cf5e98f430Rob Austein// OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
268a4475065fe6a8cd7cc707820982cf5e98f430Rob Austein// IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
268a4475065fe6a8cd7cc707820982cf5e98f430Rob Austein//
268a4475065fe6a8cd7cc707820982cf5e98f430Rob Austein
268a4475065fe6a8cd7cc707820982cf5e98f430Rob Austein#include <atf-c++.hpp>
268a4475065fe6a8cd7cc707820982cf5e98f430Rob Austein
268a4475065fe6a8cd7cc707820982cf5e98f430Rob AusteinATF_TEST_CASE(main);
268a4475065fe6a8cd7cc707820982cf5e98f430Rob AusteinATF_TEST_CASE_HEAD(main)
704e6c8876907aac0bf7380effca8bca400d4acdMark Andrews{
704e6c8876907aac0bf7380effca8bca400d4acdMark Andrews set_md_var("descr", "Helper test case that always passes");
704e6c8876907aac0bf7380effca8bca400d4acdMark Andrews}
268a4475065fe6a8cd7cc707820982cf5e98f430Rob AusteinATF_TEST_CASE_BODY(main)
f5d30e2864e048a42c4dc1134993ae7efdb5d6c3Mark Andrews{
c1a883f2e04d94e99c433b1f6cfd0c0338f4ed85Mark Andrews}
f052a01ff268cdbbf3e6f600b06d02ed8573badfAutomatic Updater
d60212e03fbef1d3dd7f7eb05c0545cc373cb9fcAutomatic UpdaterATF_INIT_TEST_CASES(tcs)
938440694b33cd752e9e4b71a526368b4811c177Tinderbox User{
19c7b1a0293498a3e36692c59646ed6e15ffc8d0Tinderbox User ATF_ADD_TEST_CASE(tcs, main);
21635968f7663163ce914f238fd99e40fdff07a1Tinderbox User}
d63ae51ba337165172a9b50fd5d84805ffe50044Tinderbox User