Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
165 changes: 0 additions & 165 deletions libcxx/test/libcxx-03/containers/container_traits.compile.pass.cpp

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,8 @@
//
// Comparison operators

// XFAIL: FROZEN-CXX03-HEADERS-FIXME

#include <concepts>
#include <__iterator/bounded_iter.h>
#include <__cxx03/__iterator/bounded_iter.h>

#include "test_iterators.h"
#include "test_macros.h"
Expand Down
12 changes: 2 additions & 10 deletions libcxx/test/libcxx-03/numerics/bit.ops.pass.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,8 @@
// Test the __XXXX routines in the <bit> header.
// These are not supposed to be exhaustive tests, just sanity checks.

// XFAIL: FROZEN-CXX03-HEADERS-FIXME

#include <__bit/bit_log2.h>
#include <__bit/countl.h>
#include <__bit/rotate.h>
#include <__cxx03/__bit/countl.h>
#include <__cxx03/__bit/rotate.h>
#include <cassert>

#include "test_macros.h"
Expand All @@ -27,11 +24,6 @@ TEST_CONSTEXPR_CXX14 bool test() {
assert(std::__rotr(v, 3) == 0x02468acfU);
assert(std::__countl_zero(v) == 3);

#if TEST_STD_VER > 17
ASSERT_SAME_TYPE(unsigned, decltype(std::__bit_log2(v)));
assert(std::__bit_log2(v) == 28);
#endif

return true;
}

Expand Down
42 changes: 0 additions & 42 deletions libcxx/test/libcxx-03/type_traits/desugars_to.compile.pass.cpp

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,7 @@
// returns false when there's no constant evaluation support from the compiler.
// as well as when called not in a constexpr context

// XFAIL: FROZEN-CXX03-HEADERS-FIXME

#include <__type_traits/is_constant_evaluated.h>
#include <__cxx03/__type_traits/is_constant_evaluated.h>
#include <cassert>

#include "test_macros.h"
Expand All @@ -25,10 +23,6 @@ int main (int, char**) {
ASSERT_SAME_TYPE(decltype(std::__libcpp_is_constant_evaluated()), bool);
ASSERT_NOEXCEPT(std::__libcpp_is_constant_evaluated());

#if !defined(_LIBCPP_CXX03_LANG)
static_assert(std::__libcpp_is_constant_evaluated(), "");
#endif

bool p = std::__libcpp_is_constant_evaluated();
assert(!p);

Expand Down
Loading
Loading