summaryrefslogtreecommitdiffstats
path: root/bootstrap/h_tp_basic_cpp.cpp
diff options
context:
space:
mode:
authormarcel <marcel@FreeBSD.org>2012-09-05 15:58:39 +0000
committermarcel <marcel@FreeBSD.org>2012-09-05 15:58:39 +0000
commitecc3b8e2229b8ba8327444900981cf289a183bbb (patch)
tree88ffc3ded0344f432355e85c29eedbf0b6919177 /bootstrap/h_tp_basic_cpp.cpp
parent45147a9eddaeb6ce9ca99161e2cd60a912c72e86 (diff)
downloadFreeBSD-src-ecc3b8e2229b8ba8327444900981cf289a183bbb.zip
FreeBSD-src-ecc3b8e2229b8ba8327444900981cf289a183bbb.tar.gz
1. Add README.txt with upgrade instructions as well as license info
and governance. 2. Add FREEBSD-Xlist to prune the distribution. 3. Remove files & directories not used by FreeBSD.
Diffstat (limited to 'bootstrap/h_tp_basic_cpp.cpp')
-rw-r--r--bootstrap/h_tp_basic_cpp.cpp86
1 files changed, 0 insertions, 86 deletions
diff --git a/bootstrap/h_tp_basic_cpp.cpp b/bootstrap/h_tp_basic_cpp.cpp
deleted file mode 100644
index c084445..0000000
--- a/bootstrap/h_tp_basic_cpp.cpp
+++ /dev/null
@@ -1,86 +0,0 @@
-//
-// Automated Testing Framework (atf)
-//
-// Copyright (c) 2007 The NetBSD Foundation, Inc.
-// All rights reserved.
-//
-// Redistribution and use in source and binary forms, with or without
-// modification, are permitted provided that the following conditions
-// are met:
-// 1. Redistributions of source code must retain the above copyright
-// notice, this list of conditions and the following disclaimer.
-// 2. Redistributions in binary form must reproduce the above copyright
-// notice, this list of conditions and the following disclaimer in the
-// documentation and/or other materials provided with the distribution.
-//
-// THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND
-// CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
-// INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
-// IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS BE LIABLE FOR ANY
-// DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
-// DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
-// GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
-// IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
-// OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
-// IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-//
-
-#include <atf-c++.hpp>
-
-ATF_TEST_CASE(pass);
-
-ATF_TEST_CASE_HEAD(pass)
-{
- set_md_var("descr", "An empty test case that always passes");
-}
-
-ATF_TEST_CASE_BODY(pass)
-{
- ATF_PASS();
-}
-
-ATF_TEST_CASE(fail);
-
-ATF_TEST_CASE_HEAD(fail)
-{
- set_md_var("descr", "An empty test case that always fails");
-}
-
-ATF_TEST_CASE_BODY(fail)
-{
- ATF_FAIL("On purpose");
-}
-
-ATF_TEST_CASE(skip);
-
-ATF_TEST_CASE_HEAD(skip)
-{
- set_md_var("descr", "An empty test case that is always skipped");
-}
-
-ATF_TEST_CASE_BODY(skip)
-{
- ATF_SKIP("By design");
-}
-
-ATF_TEST_CASE(default);
-
-ATF_TEST_CASE_HEAD(default)
-{
- set_md_var("descr", "A test case that passes without explicitly "
- "stating it");
-}
-
-ATF_TEST_CASE_BODY(default)
-{
-}
-
-ATF_INIT_TEST_CASES(tcs)
-{
- ATF_ADD_TEST_CASE(tcs, pass);
- ATF_ADD_TEST_CASE(tcs, fail);
- ATF_ADD_TEST_CASE(tcs, skip);
- ATF_ADD_TEST_CASE(tcs, default);
-}
OpenPOWER on IntegriCloud