Skip to content
  1. Feb 03, 2012
  2. Feb 02, 2012
  3. Feb 01, 2012
  4. Jan 31, 2012
  5. Jan 30, 2012
    • Johnny Chen's avatar
      Add "watch set" command as a more general interface in conjunction with "frame var -w". · dedb67ab
      Johnny Chen authored
      Also add test cases for watching a variable as well as a location expressed as an expression.
      
      o TestMyFirstWatchpoint.py:
      
        Modified to test "watchpoint set -w write global".
      
      o TestWatchLocationWithWatchSet.py:
      
        Added to test "watchpoint set -w write -x 1 g_char_ptr + 7" where a contrived example program
        with several threads is supposed to only access the array index within the range [0..6], but
        there's some misbehaving thread writing past the range.
      
      rdar://problem/10701761
      
      llvm-svn: 149280
      dedb67ab
  6. Jan 25, 2012
  7. Jan 24, 2012
    • Johnny Chen's avatar
      Modify redo.py script so that if sessin_dir is left unspecified, it uses the heuristic · d0077903
      Johnny Chen authored
      to find the possible session directories with names starting with %Y-%m-%d- (for example,
      2012-01-23-) and employs the one with the latest timestamp.  For example:
      
      johnny:/Volumes/data/lldb/svn/latest/test $ ./redo.py 
      Using session dir path: /Volumes/data/lldb/svn/latest/test/2012-01-23-11_28_30
      adding filterspec: DisassembleRawDataTestCase.test_disassemble_raw_data
      Running ./dotest.py  -C clang  -v -t -f DisassembleRawDataTestCase.test_disassemble_raw_data
      LLDB build dir: /Volumes/data/lldb/svn/latest/build/Debug
      LLDB-108
      Path: /Volumes/data/lldb/svn/latest
      URL: https://johnny@llvm.org/svn/llvm-project/lldb/trunk
      Repository Root: https://johnny@llvm.org/svn/llvm-project
      Repository UUID: 91177308-0d34-0410-b5e6-96231b3b80d8
      Revision: 148710
      Node Kind: directory
      Schedule: normal
      Last Changed Author: gclayton
      Last Changed Rev: 148650
      Last Changed Date: 2012-01-21 18:55:08 -0800 (Sat, 21 Jan 2012)
      
      
      
      Session logs for test failures/errors/unexpected successes will go into directory '2012-01-23-17_04_48'
      Command invoked: python ./dotest.py -C clang -v -t -f DisassembleRawDataTestCase.test_disassemble_raw_data
      
      Configuration:  compiler=clang
      ----------------------------------------------------------------------
      Collected 1 test
      
      Change dir to: /Volumes/data/lldb/svn/latest/test/python_api/disassemble-raw-data
      1: test_disassemble_raw_data (TestDisassembleRawData.DisassembleRawDataTestCase)
         Test disassembling raw bytes with the API. ... 
      Raw bytes:    ['0x48', '0x89', '0xe5']
      Disassembled: movq   %rsp, %rbp
      ok
      Restore dir to: /Volumes/data/lldb/svn/latest/test
      
      ----------------------------------------------------------------------
      Ran 1 test in 0.233s
      
      OK
      
      llvm-svn: 148766
      d0077903
  8. Jan 23, 2012
  9. Jan 21, 2012
  10. Jan 19, 2012
    • Johnny Chen's avatar
      rdar://problem/10712130 · a28b89c7
      Johnny Chen authored
      Fixed an issue where backtick char is not properly honored when setting the frame-format variable, like the following:
      
      (lldb) settings set frame-format frame #${frame.index}: ${frame.pc}{ ${module.file.basename}{`${function.name-with-args}${function.pc-offset}}}{ at ${line.file.basename}:${line.number}}\n
      (lldb) settings show frame-format
      frame-format (string) = "frame #${frame.index}: ${frame.pc}{ `${module.file.basename}{${function.name-with-args}${function.pc-offset}}}{` at ${line.file.basename}:${line.number}}\n"
      (lldb)
      
      o CommandObjectSettings.h/.cpp:
      
        Modify the command object impl to require raw command string instead of parsed command string,
        which also fixes an outstanding issue that customizing the prompt with trailing spaces doesn't
        work.
      
      o Args.cpp:
      
        During CommandInterpreter::HandleCommand(), there is a PreprocessCommand phase which already
        strips/processes pairs of backticks as an expression eval step.  There's no need to treat
        a backtick as starting a quote.
      
      o TestAbbreviations.py and change_prompt.lldb:
      
        Fixed incorrect test case/logic.
      
      o TestSettings.py:
      
        Remove expectedFailure decorator.
      
      llvm-svn: 148491
      a28b89c7
  11. Jan 18, 2012
  12. Jan 17, 2012
  13. Jan 13, 2012
Loading