summaryrefslogtreecommitdiffstats
path: root/debuginfo-tests/static-member.cpp
diff options
context:
space:
mode:
authorAdrian Prantl <aprantl@apple.com>2014-03-08 01:03:55 +0000
committerAdrian Prantl <aprantl@apple.com>2014-03-08 01:03:55 +0000
commit32347758b374e6e3db1cda6702d11ec484317a56 (patch)
tree47d4d2cae960dec1312214ab1919bae7f39946d9 /debuginfo-tests/static-member.cpp
parent26ab6c6dd5798b6bf218ddc787c3b70d70a88d92 (diff)
downloadbcm5719-llvm-32347758b374e6e3db1cda6702d11ec484317a56.tar.gz
bcm5719-llvm-32347758b374e6e3db1cda6702d11ec484317a56.zip
Work around a bug in LLDB (it finds the wrong "C", rdar://problem/14933867)
and enable this test on Darwin. llvm-svn: 203324
Diffstat (limited to 'debuginfo-tests/static-member.cpp')
-rw-r--r--debuginfo-tests/static-member.cpp23
1 files changed, 11 insertions, 12 deletions
diff --git a/debuginfo-tests/static-member.cpp b/debuginfo-tests/static-member.cpp
index 66191e7d0ad..a8e3ecb9524 100644
--- a/debuginfo-tests/static-member.cpp
+++ b/debuginfo-tests/static-member.cpp
@@ -1,26 +1,25 @@
// RUN: %clangxx -O0 -g %s -o %t -c
// RUN: %clangxx %t -o %t.out
// RUN: %test_debuginfo %s %t.out
-// XFAIL: darwin
// DEBUGGER: delete breakpoints
// DEBUGGER: break static-member.cpp:33
// DEBUGGER: r
-// DEBUGGER: ptype C
-// CHECK: {{struct|class}} C {
+// DEBUGGER: ptype MyClass
+// CHECK: {{struct|class}} MyClass {
// CHECK: static const int a;
// CHECK-NEXT: static int b;
// CHECK-NEXT: static int c;
// CHECK-NEXT: int d;
// CHECK-NEXT: }
-// DEBUGGER: p C::a
-// CHECK: $1 = 4
-// DEBUGGER: p C::c
-// CHECK: $2 = 15
+// DEBUGGER: p MyClass::a
+// CHECK: ${{[0-9]}} = 4
+// DEBUGGER: p MyClass::c
+// CHECK: ${{[0-9]}} = 15
// PR14471, PR14734
-class C {
+class MyClass {
public:
const static int a = 4;
static int b;
@@ -28,10 +27,10 @@ public:
int d;
};
-int C::c = 15;
-const int C::a;
+int MyClass::c = 15;
+const int MyClass::a;
int main() {
- C instance_C;
- return C::a;
+ MyClass instance_MyClass;
+ return MyClass::a;
}
OpenPOWER on IntegriCloud