summaryrefslogtreecommitdiffstats
path: root/debuginfo-tests/static-member.cpp
diff options
context:
space:
mode:
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