1 //===----------------------------------------------------------------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // UNSUPPORTED: no-exceptions
12 // void push_front(const value_type& x);
16 #include "test_macros.h"
17 #include "test_allocator.h"
19 // Flag that makes the copy constructor for CMyClass throw an exception
20 static bool gCopyConstructorShouldThow
= false;
24 public: CMyClass(int tag
);
25 public: CMyClass(const CMyClass
& iOther
);
28 bool equal(const CMyClass
&rhs
) const
29 { return fTag
== rhs
.fTag
&& fMagicValue
== rhs
.fMagicValue
; }
34 private: static int kStartedConstructionMagicValue
;
35 private: static int kFinishedConstructionMagicValue
;
38 // Value for fMagicValue when the constructor has started running, but not yet finished
39 int CMyClass::kStartedConstructionMagicValue
= 0;
40 // Value for fMagicValue when the constructor has finished running
41 int CMyClass::kFinishedConstructionMagicValue
= 12345;
43 CMyClass::CMyClass(int tag
) :
44 fMagicValue(kStartedConstructionMagicValue
), fTag(tag
)
46 // Signal that the constructor has finished running
47 fMagicValue
= kFinishedConstructionMagicValue
;
50 CMyClass::CMyClass(const CMyClass
& iOther
) :
51 fMagicValue(kStartedConstructionMagicValue
), fTag(iOther
.fTag
)
53 // If requested, throw an exception _before_ setting fMagicValue to kFinishedConstructionMagicValue
54 if (gCopyConstructorShouldThow
) {
55 throw std::exception();
57 // Signal that the constructor has finished running
58 fMagicValue
= kFinishedConstructionMagicValue
;
61 CMyClass::~CMyClass() {
62 // Only instances for which the constructor has finished running should be destructed
63 assert(fMagicValue
== kFinishedConstructionMagicValue
);
66 bool operator==(const CMyClass
&lhs
, const CMyClass
&rhs
) { return lhs
.equal(rhs
); }
70 CMyClass
instance(42);
72 std::deque
<CMyClass
> vec
;
74 vec
.push_front(instance
);
75 std::deque
<CMyClass
> vec2(vec
);
77 gCopyConstructorShouldThow
= true;
79 vec
.push_front(instance
);
83 gCopyConstructorShouldThow
= false;
89 typedef std::deque
<CMyClass
, test_allocator
<CMyClass
> > C
;
93 C::allocator_type::throw_after
= 1;
95 vec
.push_front(instance
);