]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/libs/leaf/test/error_code_test.cpp
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / libs / leaf / test / error_code_test.cpp
index 1d4b0293cf006e7061b39800d8f7c57d62a36701..1a3ec3e8c19f0271a51447f4ead469921092805d 100644 (file)
@@ -1,11 +1,30 @@
-// 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/handle_errors.hpp>
-#include <boost/leaf/pred.hpp>
-#include <boost/leaf/result.hpp>
+#include <boost/leaf/config.hpp>
+
+#if !BOOST_LEAF_CFG_STD_SYSTEM_ERROR
+
+#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/handle_errors.hpp>
+#   include <boost/leaf/pred.hpp>
+#   include <boost/leaf/result.hpp>
+#endif
+
 #include "_test_res.hpp"
 #include "lightweight_test.hpp"
 
@@ -595,3 +614,5 @@ int main()
     test_void<test_res<void, std::error_code>>();
     return boost::report_errors();
 }
+
+#endif