]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/libs/leaf/test/print_test.cpp
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / libs / leaf / test / print_test.cpp
index c2fdc1672955d800a6374b176f908f33ac7b56aa..e9ed0e357476e9d4a4f59121cfeb3ecc16fc4a98 100644 (file)
@@ -1,9 +1,28 @@
-// Copyright (c) 2018-2020 Emil Dotchevski and Reverge Studios, Inc.
+// Copyright 2018-2022 Emil Dotchevski and Reverge Studios, Inc.
 
 // Distributed under the Boost Software License, Version 1.0. (See accompanying
 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
 
-#include <boost/leaf/detail/print.hpp>
+#include <boost/leaf/config.hpp>
+
+#if !BOOST_LEAF_CFG_DIAGNOSTICS
+
+#include <iostream>
+
+int main()
+{
+    std::cout << "Unit test not applicable." << std::endl;
+    return 0;
+}
+
+#else
+
+#ifdef BOOST_LEAF_TEST_SINGLE_HEADER
+#   include "leaf.hpp"
+#else
+#   include <boost/leaf/detail/print.hpp>
+#endif
+
 #include "lightweight_test.hpp"
 #include <sstream>
 
@@ -58,6 +77,11 @@ bool check( T const & x, char const * sub )
     return q.find(sub)!=q.npos;
 }
 
+struct my_exception: std::exception
+{
+    char const * what() const noexcept override { return "my_exception_what"; }
+};
+
 int main()
 {
     BOOST_TEST(check(c0{ },"c0"));
@@ -95,5 +119,8 @@ int main()
         BOOST_TEST(check(y,"c4"));
         BOOST_TEST(check(y,"{Non-Printable}"));
     }
+    BOOST_TEST(check(my_exception{}, "std::exception::what(): my_exception_what"));
     return boost::report_errors();
 }
+
+#endif