summaryrefslogtreecommitdiffstats
path: root/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.getdeleter
diff options
context:
space:
mode:
authorEric Fiselier <eric@efcs.ca>2014-12-20 01:40:03 +0000
committerEric Fiselier <eric@efcs.ca>2014-12-20 01:40:03 +0000
commit5a83710e371fe68a06e6e3876c6a2c8b820a8976 (patch)
treeafde4c82ad6704681781c5cd49baa3fbd05c85db /libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.getdeleter
parentf11e8eab527fba316c64112f6e05de1a79693a3e (diff)
downloadbcm5719-llvm-5a83710e371fe68a06e6e3876c6a2c8b820a8976.tar.gz
bcm5719-llvm-5a83710e371fe68a06e6e3876c6a2c8b820a8976.zip
Move test into test/std subdirectory.
llvm-svn: 224658
Diffstat (limited to 'libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.getdeleter')
-rw-r--r--libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.getdeleter/get_deleter.pass.cpp67
1 files changed, 0 insertions, 67 deletions
diff --git a/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.getdeleter/get_deleter.pass.cpp b/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.getdeleter/get_deleter.pass.cpp
deleted file mode 100644
index a6c62496fd6..00000000000
--- a/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.getdeleter/get_deleter.pass.cpp
+++ /dev/null
@@ -1,67 +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.
-//
-//===----------------------------------------------------------------------===//
-
-// <memory>
-
-// shared_ptr
-
-// template<class D, class T> D* get_deleter(const shared_ptr<T>& p);
-
-#include <memory>
-#include <cassert>
-#include "../test_deleter.h"
-
-struct A
-{
- static int count;
-
- A() {++count;}
- A(const A&) {++count;}
- ~A() {--count;}
-};
-
-int A::count = 0;
-
-int main()
-{
- {
- {
- A* ptr = new A;
- std::shared_ptr<A> p(ptr, test_deleter<A>(3));
- test_deleter<A>* d = std::get_deleter<test_deleter<A> >(p);
- assert(test_deleter<A>::count == 1);
- assert(test_deleter<A>::dealloc_count == 0);
- assert(d);
- assert(d->state() == 3);
- }
- assert(A::count == 0);
- assert(test_deleter<A>::count == 0);
- assert(test_deleter<A>::dealloc_count == 1);
- }
- test_deleter<A>::dealloc_count = 0;
- {
- {
- std::shared_ptr<A> p(nullptr, test_deleter<A>(3));
- test_deleter<A>* d = std::get_deleter<test_deleter<A> >(p);
- assert(test_deleter<A>::count == 1);
- assert(test_deleter<A>::dealloc_count == 0);
- assert(d);
- assert(d->state() == 3);
- }
- assert(A::count == 0);
- assert(test_deleter<A>::count == 0);
- assert(test_deleter<A>::dealloc_count == 1);
- }
- test_deleter<A>::dealloc_count = 0;
- {
- std::shared_ptr<A> p(nullptr, test_deleter<A>(3));
- std::default_delete<A>* d = std::get_deleter<std::default_delete<A> >(p);
- assert(d == 0);
- }
-}
OpenPOWER on IntegriCloud