[llvm-commits] [debuginfo-tests] r172752 - /debuginfo-tests/trunk/static-member.cpp

Eric Christopher echristo at gmail.com
Thu Jan 17 12:09:50 PST 2013


Author: echristo
Date: Thu Jan 17 14:09:50 2013
New Revision: 172752

URL: http://llvm.org/viewvc/llvm-project?rev=172752&view=rev
Log:
Harden this test a bit to work on the mac with ancient gdbs.

Modified:
    debuginfo-tests/trunk/static-member.cpp

Modified: debuginfo-tests/trunk/static-member.cpp
URL: http://llvm.org/viewvc/llvm-project/debuginfo-tests/trunk/static-member.cpp?rev=172752&r1=172751&r2=172752&view=diff
==============================================================================
--- debuginfo-tests/trunk/static-member.cpp (original)
+++ debuginfo-tests/trunk/static-member.cpp Thu Jan 17 14:09:50 2013
@@ -1,20 +1,21 @@
-// RUN: %clangxx -O0 -g %s -o %t.out
+// RUN: %clangxx -O0 -g %s -o %t -c
+// RUN: %clangxx %t -o %t.out
 // RUN: %test_debuginfo %s %t.out
 
 // DEBUGGER: delete breakpoints
-// DEBUGGER: break main
+// DEBUGGER: break static-member.cpp:33
 // DEBUGGER: r
-// DEBUGGER: n
 // DEBUGGER: ptype C
-// CHECK:      type = class C {
-// CHECK-NEXT: public:
-// CHECK-NEXT: static const int a;
+// CHECK:      type = {{struct|class}} C {
+// CHECK:      static const int a;
 // CHECK-NEXT: static int b;
 // CHECK-NEXT: static int c;
 // CHECK-NEXT: int d;
 // CHECK-NEXT: }
-// DEBUGGER: p instance_C
-// CHECK: $1 = {static a = 4, static b = {{.*}}, static c = 15, d = {{.*}}}
+// DEBUGGER: p C::a
+// CHECK: $1 = 4
+// DEBUGGER: p C::c
+// CHECK: $2 = 15
 
 // PR14471, PR14734
 





More information about the llvm-commits mailing list