Instead of writing something like `XFAIL: use_system_cxx_lib && target=...` to XFAIL back-deployment tests, introduce named Lit features like `availability-shared_mutex-missing` to represent those. This makes the XFAIL annotations leaner, and solves the problem of XFAIL comments potentially getting out of sync. This would also make it easier for another vendor to add their own annotations to the test suite by simply changing how the feature is defined for their OS releases, instead of having to modify hundreds of tests to add repetitive annotations. This doesn't touch *all* annotations -- only annotations that were widely duplicated are given named features (e.g. when filesystem or shared_mutex were introduced). I still think it probably doesn't make sense to have a named feature for every single fix we make to the dylib. This is in essence a revert of 2659663, but since then the test suite has changed significantly. Back when I did 2659663, the configuration files we have for the test suite right now were being bootstrapped and it wasn't clear how to provide these features for back-deployment in that context. Since then, we have a streamlined way of defining these features in `features.py` and that doesn't impact the ability for a configuration file to stay minimal. The original motivation for this change was that I am about to propose a change that would touch essentially all XFAIL annotations for back-deployment in the test suite, and this greatly reduces the number of lines changed by that upcoming change, in addition to making the test suite generally better. Differential Revision: https://reviews.llvm.org/D146359
438 lines
15 KiB
C++
438 lines
15 KiB
C++
//===----------------------------------------------------------------------===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// UNSUPPORTED: c++03, c++11, c++14
|
|
|
|
// XFAIL: availability-bad_variant_access-missing && !no-exceptions
|
|
|
|
// <variant>
|
|
// template <class Visitor, class... Variants>
|
|
// constexpr see below visit(Visitor&& vis, Variants&&... vars);
|
|
|
|
#include <cassert>
|
|
#include <memory>
|
|
#include <string>
|
|
#include <type_traits>
|
|
#include <utility>
|
|
#include <variant>
|
|
|
|
#include "test_macros.h"
|
|
#include "variant_test_helpers.h"
|
|
|
|
void test_call_operator_forwarding() {
|
|
using Fn = ForwardingCallObject;
|
|
Fn obj{};
|
|
const Fn &cobj = obj;
|
|
{ // test call operator forwarding - no variant
|
|
std::visit(obj);
|
|
assert(Fn::check_call<>(CT_NonConst | CT_LValue));
|
|
std::visit(cobj);
|
|
assert(Fn::check_call<>(CT_Const | CT_LValue));
|
|
std::visit(std::move(obj));
|
|
assert(Fn::check_call<>(CT_NonConst | CT_RValue));
|
|
std::visit(std::move(cobj));
|
|
assert(Fn::check_call<>(CT_Const | CT_RValue));
|
|
}
|
|
{ // test call operator forwarding - single variant, single arg
|
|
using V = std::variant<int>;
|
|
V v(42);
|
|
std::visit(obj, v);
|
|
assert(Fn::check_call<int &>(CT_NonConst | CT_LValue));
|
|
std::visit(cobj, v);
|
|
assert(Fn::check_call<int &>(CT_Const | CT_LValue));
|
|
std::visit(std::move(obj), v);
|
|
assert(Fn::check_call<int &>(CT_NonConst | CT_RValue));
|
|
std::visit(std::move(cobj), v);
|
|
assert(Fn::check_call<int &>(CT_Const | CT_RValue));
|
|
}
|
|
{ // test call operator forwarding - single variant, multi arg
|
|
using V = std::variant<int, long, double>;
|
|
V v(42l);
|
|
std::visit(obj, v);
|
|
assert(Fn::check_call<long &>(CT_NonConst | CT_LValue));
|
|
std::visit(cobj, v);
|
|
assert(Fn::check_call<long &>(CT_Const | CT_LValue));
|
|
std::visit(std::move(obj), v);
|
|
assert(Fn::check_call<long &>(CT_NonConst | CT_RValue));
|
|
std::visit(std::move(cobj), v);
|
|
assert(Fn::check_call<long &>(CT_Const | CT_RValue));
|
|
}
|
|
{ // test call operator forwarding - multi variant, multi arg
|
|
using V = std::variant<int, long, double>;
|
|
using V2 = std::variant<int *, std::string>;
|
|
V v(42l);
|
|
V2 v2("hello");
|
|
std::visit(obj, v, v2);
|
|
assert((Fn::check_call<long &, std::string &>(CT_NonConst | CT_LValue)));
|
|
std::visit(cobj, v, v2);
|
|
assert((Fn::check_call<long &, std::string &>(CT_Const | CT_LValue)));
|
|
std::visit(std::move(obj), v, v2);
|
|
assert((Fn::check_call<long &, std::string &>(CT_NonConst | CT_RValue)));
|
|
std::visit(std::move(cobj), v, v2);
|
|
assert((Fn::check_call<long &, std::string &>(CT_Const | CT_RValue)));
|
|
}
|
|
{
|
|
using V = std::variant<int, long, double, std::string>;
|
|
V v1(42l), v2("hello"), v3(101), v4(1.1);
|
|
std::visit(obj, v1, v2, v3, v4);
|
|
assert((Fn::check_call<long &, std::string &, int &, double &>(CT_NonConst | CT_LValue)));
|
|
std::visit(cobj, v1, v2, v3, v4);
|
|
assert((Fn::check_call<long &, std::string &, int &, double &>(CT_Const | CT_LValue)));
|
|
std::visit(std::move(obj), v1, v2, v3, v4);
|
|
assert((Fn::check_call<long &, std::string &, int &, double &>(CT_NonConst | CT_RValue)));
|
|
std::visit(std::move(cobj), v1, v2, v3, v4);
|
|
assert((Fn::check_call<long &, std::string &, int &, double &>(CT_Const | CT_RValue)));
|
|
}
|
|
{
|
|
using V = std::variant<int, long, double, int*, std::string>;
|
|
V v1(42l), v2("hello"), v3(nullptr), v4(1.1);
|
|
std::visit(obj, v1, v2, v3, v4);
|
|
assert((Fn::check_call<long &, std::string &, int *&, double &>(CT_NonConst | CT_LValue)));
|
|
std::visit(cobj, v1, v2, v3, v4);
|
|
assert((Fn::check_call<long &, std::string &, int *&, double &>(CT_Const | CT_LValue)));
|
|
std::visit(std::move(obj), v1, v2, v3, v4);
|
|
assert((Fn::check_call<long &, std::string &, int *&, double &>(CT_NonConst | CT_RValue)));
|
|
std::visit(std::move(cobj), v1, v2, v3, v4);
|
|
assert((Fn::check_call<long &, std::string &, int *&, double &>(CT_Const | CT_RValue)));
|
|
}
|
|
}
|
|
|
|
void test_argument_forwarding() {
|
|
using Fn = ForwardingCallObject;
|
|
Fn obj{};
|
|
const auto Val = CT_LValue | CT_NonConst;
|
|
{ // single argument - value type
|
|
using V = std::variant<int>;
|
|
V v(42);
|
|
const V &cv = v;
|
|
std::visit(obj, v);
|
|
assert(Fn::check_call<int &>(Val));
|
|
std::visit(obj, cv);
|
|
assert(Fn::check_call<const int &>(Val));
|
|
std::visit(obj, std::move(v));
|
|
assert(Fn::check_call<int &&>(Val));
|
|
std::visit(obj, std::move(cv));
|
|
assert(Fn::check_call<const int &&>(Val));
|
|
}
|
|
#if !defined(TEST_VARIANT_HAS_NO_REFERENCES)
|
|
{ // single argument - lvalue reference
|
|
using V = std::variant<int &>;
|
|
int x = 42;
|
|
V v(x);
|
|
const V &cv = v;
|
|
std::visit(obj, v);
|
|
assert(Fn::check_call<int &>(Val));
|
|
std::visit(obj, cv);
|
|
assert(Fn::check_call<int &>(Val));
|
|
std::visit(obj, std::move(v));
|
|
assert(Fn::check_call<int &>(Val));
|
|
std::visit(obj, std::move(cv));
|
|
assert(Fn::check_call<int &>(Val));
|
|
}
|
|
{ // single argument - rvalue reference
|
|
using V = std::variant<int &&>;
|
|
int x = 42;
|
|
V v(std::move(x));
|
|
const V &cv = v;
|
|
std::visit(obj, v);
|
|
assert(Fn::check_call<int &>(Val));
|
|
std::visit(obj, cv);
|
|
assert(Fn::check_call<int &>(Val));
|
|
std::visit(obj, std::move(v));
|
|
assert(Fn::check_call<int &&>(Val));
|
|
std::visit(obj, std::move(cv));
|
|
assert(Fn::check_call<int &&>(Val));
|
|
}
|
|
#endif
|
|
{ // multi argument - multi variant
|
|
using V = std::variant<int, std::string, long>;
|
|
V v1(42), v2("hello"), v3(43l);
|
|
std::visit(obj, v1, v2, v3);
|
|
assert((Fn::check_call<int &, std::string &, long &>(Val)));
|
|
std::visit(obj, std::as_const(v1), std::as_const(v2), std::move(v3));
|
|
assert((Fn::check_call<const int &, const std::string &, long &&>(Val)));
|
|
}
|
|
{
|
|
using V = std::variant<int, long, double, std::string>;
|
|
V v1(42l), v2("hello"), v3(101), v4(1.1);
|
|
std::visit(obj, v1, v2, v3, v4);
|
|
assert((Fn::check_call<long &, std::string &, int &, double &>(Val)));
|
|
std::visit(obj, std::as_const(v1), std::as_const(v2), std::move(v3), std::move(v4));
|
|
assert((Fn::check_call<const long &, const std::string &, int &&, double &&>(Val)));
|
|
}
|
|
{
|
|
using V = std::variant<int, long, double, int*, std::string>;
|
|
V v1(42l), v2("hello"), v3(nullptr), v4(1.1);
|
|
std::visit(obj, v1, v2, v3, v4);
|
|
assert((Fn::check_call<long &, std::string &, int *&, double &>(Val)));
|
|
std::visit(obj, std::as_const(v1), std::as_const(v2), std::move(v3), std::move(v4));
|
|
assert((Fn::check_call<const long &, const std::string &, int *&&, double &&>(Val)));
|
|
}
|
|
}
|
|
|
|
void test_return_type() {
|
|
using Fn = ForwardingCallObject;
|
|
Fn obj{};
|
|
const Fn &cobj = obj;
|
|
{ // test call operator forwarding - no variant
|
|
static_assert(std::is_same_v<decltype(std::visit(obj)), Fn&>);
|
|
static_assert(std::is_same_v<decltype(std::visit(cobj)), const Fn&>);
|
|
static_assert(std::is_same_v<decltype(std::visit(std::move(obj))), Fn&&>);
|
|
static_assert(std::is_same_v<decltype(std::visit(std::move(cobj))), const Fn&&>);
|
|
}
|
|
{ // test call operator forwarding - single variant, single arg
|
|
using V = std::variant<int>;
|
|
V v(42);
|
|
static_assert(std::is_same_v<decltype(std::visit(obj, v)), Fn&>);
|
|
static_assert(std::is_same_v<decltype(std::visit(cobj, v)), const Fn&>);
|
|
static_assert(std::is_same_v<decltype(std::visit(std::move(obj), v)), Fn&&>);
|
|
static_assert(std::is_same_v<decltype(std::visit(std::move(cobj), v)), const Fn&&>);
|
|
}
|
|
{ // test call operator forwarding - single variant, multi arg
|
|
using V = std::variant<int, long, double>;
|
|
V v(42l);
|
|
static_assert(std::is_same_v<decltype(std::visit(obj, v)), Fn&>);
|
|
static_assert(std::is_same_v<decltype(std::visit(cobj, v)), const Fn&>);
|
|
static_assert(std::is_same_v<decltype(std::visit(std::move(obj), v)), Fn&&>);
|
|
static_assert(std::is_same_v<decltype(std::visit(std::move(cobj), v)), const Fn&&>);
|
|
}
|
|
{ // test call operator forwarding - multi variant, multi arg
|
|
using V = std::variant<int, long, double>;
|
|
using V2 = std::variant<int *, std::string>;
|
|
V v(42l);
|
|
V2 v2("hello");
|
|
static_assert(std::is_same_v<decltype(std::visit(obj, v, v2)), Fn&>);
|
|
static_assert(std::is_same_v<decltype(std::visit(cobj, v, v2)), const Fn&>);
|
|
static_assert(std::is_same_v<decltype(std::visit(std::move(obj), v, v2)), Fn&&>);
|
|
static_assert(std::is_same_v<decltype(std::visit(std::move(cobj), v, v2)), const Fn&&>);
|
|
}
|
|
{
|
|
using V = std::variant<int, long, double, std::string>;
|
|
V v1(42l), v2("hello"), v3(101), v4(1.1);
|
|
static_assert(std::is_same_v<decltype(std::visit(obj, v1, v2, v3, v4)), Fn&>);
|
|
static_assert(std::is_same_v<decltype(std::visit(cobj, v1, v2, v3, v4)), const Fn&>);
|
|
static_assert(std::is_same_v<decltype(std::visit(std::move(obj), v1, v2, v3, v4)), Fn&&>);
|
|
static_assert(std::is_same_v<decltype(std::visit(std::move(cobj), v1, v2, v3, v4)), const Fn&&>);
|
|
}
|
|
{
|
|
using V = std::variant<int, long, double, int*, std::string>;
|
|
V v1(42l), v2("hello"), v3(nullptr), v4(1.1);
|
|
static_assert(std::is_same_v<decltype(std::visit(obj, v1, v2, v3, v4)), Fn&>);
|
|
static_assert(std::is_same_v<decltype(std::visit(cobj, v1, v2, v3, v4)), const Fn&>);
|
|
static_assert(std::is_same_v<decltype(std::visit(std::move(obj), v1, v2, v3, v4)), Fn&&>);
|
|
static_assert(std::is_same_v<decltype(std::visit(std::move(cobj), v1, v2, v3, v4)), const Fn&&>);
|
|
}
|
|
}
|
|
|
|
void test_constexpr() {
|
|
constexpr ReturnFirst obj{};
|
|
constexpr ReturnArity aobj{};
|
|
{
|
|
using V = std::variant<int>;
|
|
constexpr V v(42);
|
|
static_assert(std::visit(obj, v) == 42, "");
|
|
}
|
|
{
|
|
using V = std::variant<short, long, char>;
|
|
constexpr V v(42l);
|
|
static_assert(std::visit(obj, v) == 42, "");
|
|
}
|
|
{
|
|
using V1 = std::variant<int>;
|
|
using V2 = std::variant<int, char *, long long>;
|
|
using V3 = std::variant<bool, int, int>;
|
|
constexpr V1 v1;
|
|
constexpr V2 v2(nullptr);
|
|
constexpr V3 v3;
|
|
static_assert(std::visit(aobj, v1, v2, v3) == 3, "");
|
|
}
|
|
{
|
|
using V1 = std::variant<int>;
|
|
using V2 = std::variant<int, char *, long long>;
|
|
using V3 = std::variant<void *, int, int>;
|
|
constexpr V1 v1;
|
|
constexpr V2 v2(nullptr);
|
|
constexpr V3 v3;
|
|
static_assert(std::visit(aobj, v1, v2, v3) == 3, "");
|
|
}
|
|
{
|
|
using V = std::variant<int, long, double, int *>;
|
|
constexpr V v1(42l), v2(101), v3(nullptr), v4(1.1);
|
|
static_assert(std::visit(aobj, v1, v2, v3, v4) == 4, "");
|
|
}
|
|
{
|
|
using V = std::variant<int, long, double, long long, int *>;
|
|
constexpr V v1(42l), v2(101), v3(nullptr), v4(1.1);
|
|
static_assert(std::visit(aobj, v1, v2, v3, v4) == 4, "");
|
|
}
|
|
}
|
|
|
|
void test_exceptions() {
|
|
#ifndef TEST_HAS_NO_EXCEPTIONS
|
|
ReturnArity obj{};
|
|
auto test = [&](auto &&... args) {
|
|
try {
|
|
std::visit(obj, args...);
|
|
} catch (const std::bad_variant_access &) {
|
|
return true;
|
|
} catch (...) {
|
|
}
|
|
return false;
|
|
};
|
|
{
|
|
using V = std::variant<int, MakeEmptyT>;
|
|
V v;
|
|
makeEmpty(v);
|
|
assert(test(v));
|
|
}
|
|
{
|
|
using V = std::variant<int, MakeEmptyT>;
|
|
using V2 = std::variant<long, std::string, void *>;
|
|
V v;
|
|
makeEmpty(v);
|
|
V2 v2("hello");
|
|
assert(test(v, v2));
|
|
}
|
|
{
|
|
using V = std::variant<int, MakeEmptyT>;
|
|
using V2 = std::variant<long, std::string, void *>;
|
|
V v;
|
|
makeEmpty(v);
|
|
V2 v2("hello");
|
|
assert(test(v2, v));
|
|
}
|
|
{
|
|
using V = std::variant<int, MakeEmptyT>;
|
|
using V2 = std::variant<long, std::string, void *, MakeEmptyT>;
|
|
V v;
|
|
makeEmpty(v);
|
|
V2 v2;
|
|
makeEmpty(v2);
|
|
assert(test(v, v2));
|
|
}
|
|
{
|
|
using V = std::variant<int, long, double, MakeEmptyT>;
|
|
V v1(42l), v2(101), v3(202), v4(1.1);
|
|
makeEmpty(v1);
|
|
assert(test(v1, v2, v3, v4));
|
|
}
|
|
{
|
|
using V = std::variant<int, long, double, long long, MakeEmptyT>;
|
|
V v1(42l), v2(101), v3(202), v4(1.1);
|
|
makeEmpty(v1);
|
|
makeEmpty(v2);
|
|
makeEmpty(v3);
|
|
makeEmpty(v4);
|
|
assert(test(v1, v2, v3, v4));
|
|
}
|
|
#endif
|
|
}
|
|
|
|
// See https://llvm.org/PR31916
|
|
void test_caller_accepts_nonconst() {
|
|
struct A {};
|
|
struct Visitor {
|
|
void operator()(A&) {}
|
|
};
|
|
std::variant<A> v;
|
|
std::visit(Visitor{}, v);
|
|
}
|
|
|
|
struct MyVariant : std::variant<short, long, float> {};
|
|
|
|
namespace std {
|
|
template <std::size_t Index>
|
|
void get(const MyVariant&) {
|
|
assert(false);
|
|
}
|
|
} // namespace std
|
|
|
|
void test_derived_from_variant() {
|
|
auto v1 = MyVariant{42};
|
|
const auto cv1 = MyVariant{142};
|
|
std::visit([](auto x) { assert(x == 42); }, v1);
|
|
std::visit([](auto x) { assert(x == 142); }, cv1);
|
|
std::visit([](auto x) { assert(x == -1.25f); }, MyVariant{-1.25f});
|
|
std::visit([](auto x) { assert(x == 42); }, std::move(v1));
|
|
std::visit([](auto x) { assert(x == 142); }, std::move(cv1));
|
|
|
|
// Check that visit does not take index nor valueless_by_exception members from the base class.
|
|
struct EvilVariantBase {
|
|
int index;
|
|
char valueless_by_exception;
|
|
};
|
|
|
|
struct EvilVariant1 : std::variant<int, long, double>,
|
|
std::tuple<int>,
|
|
EvilVariantBase {
|
|
using std::variant<int, long, double>::variant;
|
|
};
|
|
|
|
std::visit([](auto x) { assert(x == 12); }, EvilVariant1{12});
|
|
std::visit([](auto x) { assert(x == 12.3); }, EvilVariant1{12.3});
|
|
|
|
// Check that visit unambiguously picks the variant, even if the other base has __impl member.
|
|
struct ImplVariantBase {
|
|
struct Callable {
|
|
bool operator()() const { assert(false); return false; }
|
|
};
|
|
|
|
Callable __impl;
|
|
};
|
|
|
|
struct EvilVariant2 : std::variant<int, long, double>, ImplVariantBase {
|
|
using std::variant<int, long, double>::variant;
|
|
};
|
|
|
|
std::visit([](auto x) { assert(x == 12); }, EvilVariant2{12});
|
|
std::visit([](auto x) { assert(x == 12.3); }, EvilVariant2{12.3});
|
|
}
|
|
|
|
struct any_visitor {
|
|
template <typename T>
|
|
void operator()(const T&) const {}
|
|
};
|
|
|
|
template <typename T, typename = decltype(std::visit(
|
|
std::declval<any_visitor&>(), std::declval<T>()))>
|
|
constexpr bool has_visit(int) {
|
|
return true;
|
|
}
|
|
|
|
template <typename T>
|
|
constexpr bool has_visit(...) {
|
|
return false;
|
|
}
|
|
|
|
void test_sfinae() {
|
|
struct BadVariant : std::variant<short>, std::variant<long, float> {};
|
|
struct BadVariant2 : private std::variant<long, float> {};
|
|
struct GoodVariant : std::variant<long, float> {};
|
|
struct GoodVariant2 : GoodVariant {};
|
|
|
|
static_assert(!has_visit<int>(0));
|
|
static_assert(!has_visit<BadVariant>(0));
|
|
static_assert(!has_visit<BadVariant2>(0));
|
|
static_assert(has_visit<std::variant<int>>(0));
|
|
static_assert(has_visit<GoodVariant>(0));
|
|
static_assert(has_visit<GoodVariant2>(0));
|
|
}
|
|
|
|
int main(int, char**) {
|
|
test_call_operator_forwarding();
|
|
test_argument_forwarding();
|
|
test_return_type();
|
|
test_constexpr();
|
|
test_exceptions();
|
|
test_caller_accepts_nonconst();
|
|
test_derived_from_variant();
|
|
test_sfinae();
|
|
|
|
return 0;
|
|
}
|