Quite a few libcxx tests seem to follow the format: #if _LIBCPP_STD_VER > X // Do test. #else // Empty test. #endif We should instead use the UNSUPPORTED lit directive to exclude the test on earlier C++ standards. This gives us a more accurate number of test passes for those standards and avoids unnecessary conflicts with other lit directives on the same tests. Reviewers: bcraig, ericwf, mclow.lists Differential revision: http://reviews.llvm.org/D20730 llvm-svn: 271108
52 lines
1.6 KiB
C++
52 lines
1.6 KiB
C++
//===----------------------------------------------------------------------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
|
// Source Licenses. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// UNSUPPORTED: c++98, c++03, c++11
|
|
// <string>
|
|
|
|
// template<class charT, class traits, class Allocator>
|
|
// bool operator==(const charT* lhs, const basic_string<charT,traits> rhs);
|
|
// template<class charT, class traits, class Allocator>
|
|
// bool operator==(const basic_string_view<charT,traits> lhs, const CharT* rhs);
|
|
|
|
#include <experimental/string_view>
|
|
#include <cassert>
|
|
|
|
template <class S>
|
|
void
|
|
test(const std::string &lhs, S rhs, bool x)
|
|
{
|
|
assert((lhs == rhs) == x);
|
|
assert((rhs == lhs) == x);
|
|
}
|
|
|
|
int main()
|
|
{
|
|
{
|
|
typedef std::experimental::string_view S;
|
|
test("", S(""), true);
|
|
test("", S("abcde"), false);
|
|
test("", S("abcdefghij"), false);
|
|
test("", S("abcdefghijklmnopqrst"), false);
|
|
test("abcde", S(""), false);
|
|
test("abcde", S("abcde"), true);
|
|
test("abcde", S("abcdefghij"), false);
|
|
test("abcde", S("abcdefghijklmnopqrst"), false);
|
|
test("abcdefghij", S(""), false);
|
|
test("abcdefghij", S("abcde"), false);
|
|
test("abcdefghij", S("abcdefghij"), true);
|
|
test("abcdefghij", S("abcdefghijklmnopqrst"), false);
|
|
test("abcdefghijklmnopqrst", S(""), false);
|
|
test("abcdefghijklmnopqrst", S("abcde"), false);
|
|
test("abcdefghijklmnopqrst", S("abcdefghij"), false);
|
|
test("abcdefghijklmnopqrst", S("abcdefghijklmnopqrst"), true);
|
|
}
|
|
}
|
|
|