Skip to content
  1. Sep 02, 2010
  2. Sep 01, 2010
  3. Aug 31, 2010
  4. Aug 30, 2010
    • Johnny Chen's avatar
      Added a system() method to the TestBase class of lldbtest.py, which is actually · 8952a2d5
      Johnny Chen authored
      taken from Python 2.7's subprocess.check_output() convenience function.  The
      purpose of this method is to run the os command with arguments and return its
      output as a byte string.
      
      Modified hello_world/TestHelloWorld.py to have two test cases:
      
      o test_with_dsym_and_run_command
      o test_with_dwarf_and_process_launch_api
      
      with the dsym case conditioned on sys.platform.startswith("darwin") being true.
      The two cases utilize the system() method to invoke "make clean; make MAKE_DYSM=YES/NO"
      to prepare for the appropriate debugging format before running the test logic.
      
      llvm-svn: 112530
      8952a2d5
    • Sean Callanan's avatar
      Fixed a bug where ClangExpressionVariableList was · eb433971
      Sean Callanan authored
      storing pointers to objects inside a std::vector.
      These objects can move around as the std::vector
      changes, invalidating the pointers.
      
      llvm-svn: 112527
      eb433971
    • Jim Ingham's avatar
      Added a way to open the current source file & line in an external editor, and... · e40e4218
      Jim Ingham authored
      Added a way to open the current source file & line in an external editor, and you can turn this on with:
      
      lldb -e
      
      llvm-svn: 112502
      e40e4218
    • Greg Clayton's avatar
      Clarified the intent of the SymbolContextScope class in the header · 59e8fc1c
      Greg Clayton authored
      documentation. Symbol now inherits from the symbol
      context scope so that the StackID can use a "SymbolContextScope *"
      instead of a blockID (which could have been the same as some other
      blockID from another symbol file). 
      
      Modified the stacks that are created on subsequent stops to reuse
      the previous stack frame objects which will allow for some internal
      optimization using pointer comparisons during stepping. 
      
      llvm-svn: 112495
      59e8fc1c
  5. Aug 28, 2010
  6. Aug 27, 2010
Loading