From b7332b04df5d50c92640c74cfeb138ecb7e3f7ae Mon Sep 17 00:00:00 2001 From: Dimitry Andric Date: Tue, 20 Aug 2019 18:01:01 +0000 Subject: Remove upstream files and directories from vendor/libc++/dist that we do not use. This saves on repository space, and reduces the number of tree conflicts when merging. --- .../func.wrap.func.con/alloc_F.pass.cpp | 130 --------------------- 1 file changed, 130 deletions(-) delete mode 100644 test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/alloc_F.pass.cpp (limited to 'test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/alloc_F.pass.cpp') diff --git a/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/alloc_F.pass.cpp b/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/alloc_F.pass.cpp deleted file mode 100644 index 8a2a12e0f789..000000000000 --- a/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/alloc_F.pass.cpp +++ /dev/null @@ -1,130 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// 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. -// -//===----------------------------------------------------------------------===// - -// -// REQUIRES: c++98 || c++03 || c++11 || c++14 - -// class function - -// template function(allocator_arg_t, const A&, F); - -#include -#include - -#include "test_macros.h" -#include "min_allocator.h" -#include "test_allocator.h" -#include "count_new.hpp" -#include "../function_types.h" - - -#if TEST_STD_VER >= 11 -struct RValueCallable { - template - void operator()(Args&&...) && {} -}; -struct LValueCallable { - template - void operator()(Args&&...) & {} -}; -#endif - -class DummyClass {}; - -template -void test_FunctionObject(AllocType& alloc) -{ - assert(globalMemCounter.checkOutstandingNewEq(0)); - { - FunctionObject target; - assert(FunctionObject::count == 1); - assert(globalMemCounter.checkOutstandingNewEq(0)); - std::function f2(std::allocator_arg, alloc, target); - assert(FunctionObject::count == 2); - assert(globalMemCounter.checkOutstandingNewEq(1)); - assert(f2.template target()); - assert(f2.template target() == 0); - assert(f2.template target() == 0); - } - assert(FunctionObject::count == 0); - assert(globalMemCounter.checkOutstandingNewEq(0)); -} - - -template -void test_FreeFunction(AllocType& alloc) -{ - assert(globalMemCounter.checkOutstandingNewEq(0)); - { - FuncType* target = &FreeFunction; - assert(globalMemCounter.checkOutstandingNewEq(0)); - std::function f2(std::allocator_arg, alloc, target); - assert(globalMemCounter.checkOutstandingNewEq(0)); - assert(f2.template target()); - assert(*f2.template target() == target); - assert(f2.template target() == 0); - assert(f2.template target() == 0); - } - assert(globalMemCounter.checkOutstandingNewEq(0)); -} - -template -void test_MemFunClass(AllocType& alloc) -{ - assert(globalMemCounter.checkOutstandingNewEq(0)); - { - TargetType target = &MemFunClass::foo; - assert(globalMemCounter.checkOutstandingNewEq(0)); - std::function f2(std::allocator_arg, alloc, target); - assert(globalMemCounter.checkOutstandingNewEq(0)); - assert(f2.template target()); - assert(*f2.template target() == target); - assert(f2.template target() == 0); - } - assert(globalMemCounter.checkOutstandingNewEq(0)); -} - -template -void test_for_alloc(Alloc& alloc) { - test_FunctionObject(alloc); - test_FunctionObject(alloc); - test_FunctionObject(alloc); - test_FunctionObject(alloc); - - test_FreeFunction(alloc); - test_FreeFunction(alloc); - test_FreeFunction(alloc); - test_FreeFunction(alloc); - - test_MemFunClass(alloc); - test_MemFunClass(alloc); - test_MemFunClass(alloc); -} - -int main() -{ - { - bare_allocator bare_alloc; - test_for_alloc(bare_alloc); - } - { - non_default_test_allocator non_default_alloc(42); - test_for_alloc(non_default_alloc); - } -#if TEST_STD_VER >= 11 - { - using Fn = std::function; - static_assert(std::is_constructible, LValueCallable&>::value, ""); - static_assert(std::is_constructible, LValueCallable>::value, ""); - static_assert(!std::is_constructible, RValueCallable&>::value, ""); - static_assert(!std::is_constructible, RValueCallable>::value, ""); - } -#endif - -} -- cgit v1.3