ZeroTierOne/ext/libpqxx-7.7.3/test/unit/test_thread_safety_model.cxx
Grant Limberg be7ce4110e
Revert "Delete and re-add libpqxx-7.7.3 due to weird corruption."
This reverts commit e96515433d71684a5a9a876c7af93530e11e160b.
2022-06-24 10:12:36 -07:00

24 lines
515 B
C++

#include "../test_helpers.hxx"
#include <pqxx/util>
namespace
{
void test_thread_safety_model()
{
auto const model{pqxx::describe_thread_safety()};
if (model.safe_libpq and model.safe_kerberos)
PQXX_CHECK_EQUAL(
model.description, "",
"Thread-safety looks okay but model description is nonempty.");
else
PQXX_CHECK_NOT_EQUAL(
model.description, "",
"Thread-safety model is imperfect but lacks description.");
}
PQXX_REGISTER_TEST(test_thread_safety_model);
} // namespace