From e434b34fa342da0539581690334b105101d00155 Mon Sep 17 00:00:00 2001 From: Jonathan Roelofs Date: Wed, 21 Jan 2015 19:05:37 +0000 Subject: Rename all of the tests in preparation for merging lit configs with libcxx http://reviews.llvm.org/D7101 llvm-svn: 226691 --- libcxxabi/test/catch_class_02.pass.cpp | 83 ++++++++++++++++++++++++++++++++++ 1 file changed, 83 insertions(+) create mode 100644 libcxxabi/test/catch_class_02.pass.cpp (limited to 'libcxxabi/test/catch_class_02.pass.cpp') diff --git a/libcxxabi/test/catch_class_02.pass.cpp b/libcxxabi/test/catch_class_02.pass.cpp new file mode 100644 index 00000000000..e1370363d55 --- /dev/null +++ b/libcxxabi/test/catch_class_02.pass.cpp @@ -0,0 +1,83 @@ +//===---------------------- catch_class_02.cpp ----------------------------===// +// +// 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. +// +//===----------------------------------------------------------------------===// + +#include +#include +#include + +struct B +{ + static int count; + int id_; + explicit B(int id) : id_(id) {count++;} + B(const B& a) : id_(a.id_) {count++;} + ~B() {count--;} +}; + +int B::count = 0; + +struct A + : B +{ + static int count; + int id_; + explicit A(int id) : B(id-1), id_(id) {count++;} + A(const A& a) : B(a.id_-1), id_(a.id_) {count++;} + ~A() {count--;} +}; + +int A::count = 0; + +void f1() +{ + assert(A::count == 0); + assert(B::count == 0); + A a(3); + assert(A::count == 1); + assert(B::count == 1); + throw a; + assert(false); +} + +void f2() +{ + try + { + assert(A::count == 0); + f1(); + assert(false); + } + catch (A a) + { + assert(A::count != 0); + assert(B::count != 0); + assert(a.id_ == 3); + throw; + } + catch (B b) + { + assert(false); + } +} + +int main() +{ + try + { + f2(); + assert(false); + } + catch (const B& b) + { + assert(B::count != 0); + assert(b.id_ == 2); + } + assert(A::count == 0); + assert(B::count == 0); +} -- cgit v1.2.3