summaryrefslogtreecommitdiffstats
path: root/cross-project-tests/debuginfo-tests/llgdb-tests/static-member.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cross-project-tests/debuginfo-tests/llgdb-tests/static-member.cpp')
-rw-r--r--cross-project-tests/debuginfo-tests/llgdb-tests/static-member.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/cross-project-tests/debuginfo-tests/llgdb-tests/static-member.cpp b/cross-project-tests/debuginfo-tests/llgdb-tests/static-member.cpp
index 57316dfd6404..492e0ca08420 100644
--- a/cross-project-tests/debuginfo-tests/llgdb-tests/static-member.cpp
+++ b/cross-project-tests/debuginfo-tests/llgdb-tests/static-member.cpp
@@ -2,16 +2,15 @@
// RUN: %clangxx %target_itanium_abi_host_triple %t -o %t.out
// RUN: %test_debuginfo %s %t.out
// XFAIL: !system-darwin && gdb-clang-incompatibility
-// XFAIL: system-darwin
// DEBUGGER: delete breakpoints
-// DEBUGGER: break static-member.cpp:33
+// DEBUGGER: break static-member.cpp:35
// DEBUGGER: r
// DEBUGGER: ptype MyClass
// CHECK: {{struct|class}} MyClass {
-// CHECK: static const int a;
+// CHECK: static const int a
// CHECK-NEXT: static int b;
// CHECK-NEXT: static int c;
-// CHECK-NEXT: int d;
+// CHECK: int d;
// CHECK-NEXT: }
// DEBUGGER: p MyClass::a
// CHECK: ${{[0-9]}} = 4