History log of /external/lldb/test/lang/cpp/this/TestCPPThis.py
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
d60b54fbccf3a9bc816cc7fa8fe8362a40d91f38 02-Aug-2013 Matt Kopec <Matt.Kopec@intel.com> Mark additional icc test failures as expected fail.


git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@187660 91177308-0d34-0410-b5e6-96231b3b80d8
/external/lldb/test/lang/cpp/this/TestCPPThis.py
f40b0928e7455c7158ea9aa82d7908cc3fe4d1af 30-Jul-2013 Ed Maste <emaste@freebsd.org> tests: Mark expected FreeBSD failures due to pr16697



git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@187415 91177308-0d34-0410-b5e6-96231b3b80d8
/external/lldb/test/lang/cpp/this/TestCPPThis.py
dbd73cf5eb16e733b28e823554e1dacdba1ebd0b 05-Mar-2013 Daniel Malea <daniel.malea@intel.com> Un-skipping tests affected by llvm.org/pr15256

patch by Ashok Thirumurthi!



git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@176462 91177308-0d34-0410-b5e6-96231b3b80d8
/external/lldb/test/lang/cpp/this/TestCPPThis.py
d288003f7ca875b1984858ead3f3397bd9c7997d 13-Feb-2013 Daniel Malea <daniel.malea@intel.com> Skip tests that assert on Linux in RecordLayoutBuilder::updateExternalFieldOffset()
- Filed bugzilla PR-15256



git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@175065 91177308-0d34-0410-b5e6-96231b3b80d8
/external/lldb/test/lang/cpp/this/TestCPPThis.py
cd630e77e4236388ca7da8ba8c7565130b63a693 25-Jan-2013 Daniel Malea <daniel.malea@intel.com> Mark test cases affected by PR 15036 (GCC-generated DWARF causes parser crash)
- Add new decorator "@skipIfGcc" to lldbtest.py



git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@173394 91177308-0d34-0410-b5e6-96231b3b80d8
/external/lldb/test/lang/cpp/this/TestCPPThis.py
431d839a33e9a274e705f7a268a1c9de2ffc2da2 22-Sep-2012 Jim Ingham <jingham@apple.com> Fix all the test case breakages caused by folks writing tests all over the place that depended explicitly
on the output of "break set". Please don't do this sort of thing!!!!!


git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@164433 91177308-0d34-0410-b5e6-96231b3b80d8
/external/lldb/test/lang/cpp/this/TestCPPThis.py
39d1af981f6a76603356fd84b2e9372a9172297c 21-May-2012 Sean Callanan <scallanan@apple.com> Fixed a nasty bug where JIT expressions didn't work
when stopped in a const method. Also updated our
testsuite to ensure that JIT is forced in this case.


git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@157208 91177308-0d34-0410-b5e6-96231b3b80d8
/external/lldb/test/lang/cpp/this/TestCPPThis.py
21b1984e161b0cadee331d32bfd721eccfdf4b1f 06-Apr-2012 Johnny Chen <johnny.chen@apple.com> Second batch of adding @dsym_test/@dwarf_test decorators to existing test cases.
Plus some minor cleanup of test method names.
Third and final batch is coming.


git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@154197 91177308-0d34-0410-b5e6-96231b3b80d8
/external/lldb/test/lang/cpp/this/TestCPPThis.py
d538f13369b1662d67fb7ac55abbf94738547203 12-Dec-2011 Johnny Chen <johnny.chen@apple.com> Commenting out the two @expectedFailureClang decorators as the tests have been passing for a while
with the recent clang compilers.

The latest I tried is: Apple clang version 3.1 (tags/Apple/clang-318.0.9) (based on LLVM 3.1svn)


git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@146427 91177308-0d34-0410-b5e6-96231b3b80d8
/external/lldb/test/lang/cpp/this/TestCPPThis.py
319df48a0962c8cd4ae9fe784e54a29bc169256c 25-Aug-2011 Johnny Chen <johnny.chen@apple.com> Remove skip decorator now that crash has been fixed.
Fix a compie warning for main.cpp.


git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@138503 91177308-0d34-0410-b5e6-96231b3b80d8
/external/lldb/test/lang/cpp/this/TestCPPThis.py
b0d97968f34f1928a4ca625d03f17ec7a14a53be 24-Aug-2011 Johnny Chen <johnny.chen@apple.com> Skip these two cases temporarily while investigating the crash on OSX Lion with clang as the compiler.


git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@138393 91177308-0d34-0410-b5e6-96231b3b80d8
/external/lldb/test/lang/cpp/this/TestCPPThis.py
adec24defd7f745bf6d931517666f12978381f85 23-Aug-2011 Johnny Chen <johnny.chen@apple.com> Add some expected failure decorators with radar numbers.


git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@138316 91177308-0d34-0410-b5e6-96231b3b80d8
/external/lldb/test/lang/cpp/this/TestCPPThis.py
c617a4cb4a451be9d7e97d7af6e165d282b5390f 06-Aug-2011 Sean Callanan <scallanan@apple.com> This is an overhaul of the expression parser code
that detects what context the current expression is
meant to execute in. LLDB now properly consults
the method declaration in the debug information
rather than trying to hunt down the "this" or "self"
pointer by name, which can be misleading.

Other fixes include:

- LLDB now properly detects that it is inside
an inlined C++ member function.

- LLDB now allows access to non-const members when
in const code.

- The functions in SymbolFile that locate the
DeclContext containing a DIE have been renamed
to reflect what they actually do. I have added
new functions that find the DeclContext for the
DIE itself.

I have also introduced testcases for C++ and
Objective-C.


git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@136999 91177308-0d34-0410-b5e6-96231b3b80d8
/external/lldb/test/lang/cpp/this/TestCPPThis.py