diff options
author | Jonathan Roelofs <jonathan@codesourcery.com> | 2015-01-21 19:05:37 +0000 |
---|---|---|
committer | Jonathan Roelofs <jonathan@codesourcery.com> | 2015-01-21 19:05:37 +0000 |
commit | e434b34fa342da0539581690334b105101d00155 (patch) | |
tree | aac5c35a8c7931251e06f007af33d4182627b1f5 /libcxxabi/test/catch_class_02.pass.cpp | |
parent | 311730ac7834eb2d1283c86b6303e688343271bd (diff) | |
download | bcm5719-llvm-e434b34fa342da0539581690334b105101d00155.tar.gz bcm5719-llvm-e434b34fa342da0539581690334b105101d00155.zip |
Rename all of the tests in preparation for merging lit configs with libcxx
http://reviews.llvm.org/D7101
llvm-svn: 226691
Diffstat (limited to 'libcxxabi/test/catch_class_02.pass.cpp')
-rw-r--r-- | libcxxabi/test/catch_class_02.pass.cpp | 83 |
1 files changed, 83 insertions, 0 deletions
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 <exception> +#include <stdlib.h> +#include <assert.h> + +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); +} |