mirror of
https://github.com/boostorg/mqtt5.git
synced 2026-01-25 16:42:32 +01:00
Summary: related to T15996 Reviewers: ivica, korina Reviewed By: ivica Subscribers: iljazovic, miljen Differential Revision: https://repo.mireo.local/D33480
41 lines
1.0 KiB
C++
41 lines
1.0 KiB
C++
//
|
|
// Copyright (c) 2025 Ivica Siladic, Bruno Iljazovic, Korina Simicevic
|
|
//
|
|
// Distributed under the Boost Software License, Version 1.0.
|
|
// (See accompanying file LICENSE or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
//
|
|
|
|
#ifndef BOOST_MQTT5_TEST_PRECONDITIONS_HPP
|
|
#define BOOST_MQTT5_TEST_PRECONDITIONS_HPP
|
|
|
|
#include <boost/test/unit_test.hpp>
|
|
|
|
#include <utility>
|
|
|
|
namespace boost::mqtt5::test {
|
|
|
|
static std::string safe_getenv(const char* name) {
|
|
#ifdef BOOST_MSVC
|
|
#pragma warning(push)
|
|
#pragma warning(disable : 4996) // MSVC doesn't like getenv
|
|
#endif
|
|
const char* res = std::getenv(name);
|
|
#ifdef BOOST_MSVC
|
|
#pragma warning(pop)
|
|
#endif
|
|
return res ? res : "";
|
|
}
|
|
|
|
struct env_condition {
|
|
std::string env;
|
|
boost::test_tools::assertion_result operator()(boost::unit_test::test_unit_id) {
|
|
return !safe_getenv(env.c_str()).empty();
|
|
}
|
|
};
|
|
static const env_condition public_broker_cond =
|
|
env_condition { "BOOST_MQTT5_PUBLIC_BROKER_TESTS" };
|
|
|
|
} // end namespace boost::mqtt5::test
|
|
|
|
#endif // BOOST_MQTT5_TEST_PRECONDITIONS_HPP
|