[Lldb-commits] [lldb] r138503 - in /lldb/trunk/test/lang/cpp/this: TestCPPThis.py main.cpp
Johnny Chen
johnny.chen at apple.com
Wed Aug 24 15:30:47 PDT 2011
Author: johnny
Date: Wed Aug 24 17:30:47 2011
New Revision: 138503
URL: http://llvm.org/viewvc/llvm-project?rev=138503&view=rev
Log:
Remove skip decorator now that crash has been fixed.
Fix a compie warning for main.cpp.
Modified:
lldb/trunk/test/lang/cpp/this/TestCPPThis.py
lldb/trunk/test/lang/cpp/this/main.cpp
Modified: lldb/trunk/test/lang/cpp/this/TestCPPThis.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/cpp/this/TestCPPThis.py?rev=138503&r1=138502&r2=138503&view=diff
==============================================================================
--- lldb/trunk/test/lang/cpp/this/TestCPPThis.py (original)
+++ lldb/trunk/test/lang/cpp/this/TestCPPThis.py Wed Aug 24 17:30:47 2011
@@ -8,7 +8,6 @@
mydir = os.path.join("lang", "cpp", "this")
- @unittest2.skip("segmentation fault -- skipping")
@unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
#rdar://problem/9962849
@expectedFailureClang
@@ -17,7 +16,6 @@
self.buildDsym()
self.static_method_commands()
- @unittest2.skip("segmentation fault -- skipping")
#rdar://problem/9962849
@expectedFailureClang
def test_with_dwarf_and_run_command(self):
Modified: lldb/trunk/test/lang/cpp/this/main.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/cpp/this/main.cpp?rev=138503&r1=138502&r2=138503&view=diff
==============================================================================
--- lldb/trunk/test/lang/cpp/this/main.cpp (original)
+++ lldb/trunk/test/lang/cpp/this/main.cpp Wed Aug 24 17:30:47 2011
@@ -16,7 +16,7 @@
int accessMemberConst() const;
static int accessStaticMember();
- int accessMemberInline(int a) __attribute__ ((always_inline))
+ void accessMemberInline(int a) __attribute__ ((always_inline))
{
m_a = a; // breakpoint 4
}
More information about the lldb-commits
mailing list