]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/test/test/test-organization-ts/test_unit-several-ts-same-name.cpp
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / libs / test / test / test-organization-ts / test_unit-several-ts-same-name.cpp
1 // (C) Copyright Raffi Enficiaud 2018.
2 // Distributed under the Boost Software License, Version 1.0.
3 // (See accompanying file LICENSE_1_0.txt or copy at
4 // http://www.boost.org/LICENSE_1_0.txt)
5
6 // See http://www.boost.org/libs/test for the library home page.
7 //
8 //! @file
9 //! Allowing for suites with same name, ticket trac #12597
10 // *****************************************************************************
11
12 #define BOOST_TEST_MODULE test_clashing_names_suites_ok
13 #include <boost/test/unit_test.hpp>
14
15 BOOST_AUTO_TEST_SUITE( dummy_suite )
16 BOOST_AUTO_TEST_CASE( ts1 )
17 {
18 BOOST_CHECK(true);
19 }
20 BOOST_AUTO_TEST_SUITE_END()
21
22
23 BOOST_AUTO_TEST_SUITE( dummy_suite )
24 BOOST_AUTO_TEST_CASE( ts2 )
25 {
26 BOOST_CHECK(true);
27 }
28 BOOST_AUTO_TEST_SUITE_END()