summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarshall Clow <mclow.lists@gmail.com>2017-06-22 00:49:03 +0000
committerMarshall Clow <mclow.lists@gmail.com>2017-06-22 00:49:03 +0000
commit3d356fdcaba603a67f0855d9d88392efac51afe0 (patch)
tree8dae84e7d731b38089d6c1081292fb8a533c7cd5
parent96504b12c3792a2d0ca56f581525ace06ceda9d3 (diff)
Add some catch(...) blocks to the tests so that if they fail, we get a good error message. No functional change.
git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@305977 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/incomplete_type.sh.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/incomplete_type.sh.cpp b/test/incomplete_type.sh.cpp
index cefefc2..86ff7da 100644
--- a/test/incomplete_type.sh.cpp
+++ b/test/incomplete_type.sh.cpp
@@ -91,6 +91,8 @@ int main() {
} catch (int NeverDefined::*p) {
assert(!p);
}
+ catch(...) { assert(!"FAIL: Didn't catch NeverDefined::*" ); }
+
AssertIncompleteTypeInfoEquals(ReturnTypeInfoIncompleteMP(), typeid(int IncompleteAtThrow::*));
try {
ThrowIncompleteMP();
@@ -104,6 +106,7 @@ int main() {
} catch (int IncompleteAtThrow::*p) {
assert(!p);
}
+ catch(...) { assert(!"FAIL: Didn't catch IncompleteAtThrow::*" ); }
AssertIncompleteTypeInfoEquals(ReturnTypeInfoIncompletePP(), typeid(IncompleteAtThrow**));
try {
@@ -114,6 +117,7 @@ int main() {
} catch (IncompleteAtThrow** p) {
assert(!p);
}
+ catch(...) { assert(!"FAIL: Didn't catch IncompleteAtThrow**" ); }
try {
ThrowIncompletePMP();
@@ -125,6 +129,7 @@ int main() {
} catch (int IncompleteAtThrow::**p) {
assert(!p);
}
+ catch(...) { assert(!"FAIL: Didn't catch IncompleteAtThrow::**" ); }
AssertIncompleteTypeInfoEquals(ReturnTypeInfoCompleteMP(), typeid(int CompleteAtThrow::*));
try {
@@ -139,6 +144,7 @@ int main() {
} catch (int CompleteAtThrow::*p) {
assert(!p);
}
+ catch(...) { assert(!"FAIL: Didn't catch CompleteAtThrow::" ); }
AssertIncompleteTypeInfoEquals(ReturnTypeInfoCompletePP(), typeid(CompleteAtThrow**));
try {
@@ -153,6 +159,7 @@ int main() {
} catch (CompleteAtThrow**p) {
assert(!p);
}
+ catch(...) { assert(!"FAIL: Didn't catch CompleteAtThrow**" ); }
try {
ThrowCompletePMP();
@@ -168,6 +175,7 @@ int main() {
} catch (int CompleteAtThrow::**p) {
assert(!p);
}
+ catch(...) { assert(!"FAIL: Didn't catch CompleteAtThrow::**" ); }
#if __cplusplus >= 201103L
// Catch nullptr as complete type
@@ -176,6 +184,7 @@ int main() {
} catch (int IncompleteAtThrow::*p) {
assert(!p);
}
+ catch(...) { assert(!"FAIL: Didn't catch nullptr as IncompleteAtThrow::*" ); }
// Catch nullptr as an incomplete type
try {
@@ -183,12 +192,16 @@ int main() {
} catch (int CompleteAtThrow::*p) {
assert(!p);
}
+ catch(...) { assert(!"FAIL: Didn't catch nullptr as CompleteAtThrow::*" ); }
+
// Catch nullptr as a type that is never complete.
try {
ThrowNullptr();
} catch (int NeverDefined::*p) {
assert(!p);
}
+ catch(...) { assert(!"FAIL: Didn't catch nullptr as NeverDefined::*" ); }
+
#endif
}
#endif