Skip to content
  1. Feb 13, 2015
    • Ilia K's avatar
      Fix build: revert r229148 "Fix argdumper build in cmake (OS X) after r228636"... · a7e79c1b
      Ilia K authored
      Fix build: revert r229148 "Fix argdumper build in cmake (OS X) after r228636" and r229159 "Fix build: make_symlink_darwin_debug passes 2 arguments into make_symlink, but it requires 4 arguments"
      
      llvm-svn: 229166
      a7e79c1b
    • Ilia K's avatar
      Fix build: make_symlink_darwin_debug passes 2 arguments into make_symlink, but... · 98c22539
      Ilia K authored
      Fix build: make_symlink_darwin_debug passes 2 arguments into make_symlink, but it requires 4 arguments
      
      llvm-svn: 229159
      98c22539
    • Ilia K's avatar
      Fix argdumper build in cmake (OS X) after r228636 · 14a92711
      Ilia K authored
      Summary:
      This patch fixes the following tests on OS X:
      
      ```
        FAIL: test_with_dsym (TestLaunchWithGlob.LaunchWithGlobTestCase)
        ----------------------------------------------------------------------
        Traceback (most recent call last):
          File "/Users/testuser/build/workspace/LLDB_master_release_OSX/llvm_master/tools/lldb/test/lldbtest.py", line 456, in wrapper
            return func(self, *args, **kwargs)
          File "/Users/testuser/build/workspace/LLDB_master_release_OSX/llvm_master/tools/lldb/test/functionalities/launch_with_glob/TestLaunchWithGlob.py", line 21, in test_with_dsym
            self.do_test ()
          File "/Users/testuser/build/workspace/LLDB_master_release_OSX/llvm_master/tools/lldb/test/functionalities/launch_with_glob/TestLaunchWithGlob.py", line 42, in do_test
            self.runCmd("process launch -G true -w %s -- fi*.tx?" % (os.getcwd()))
          File "/Users/testuser/build/workspace/LLDB_master_release_OSX/llvm_master/tools/lldb/test/lldbtest.py", line 1953, in runCmd
            msg if msg else CMD_MSG(cmd))
        AssertionError: False is not True : Command 'process launch -G true -w /Users/testuser/build/workspace/LLDB_master_release_OSX/llvm_master/tools/lldb/test/functionalities/launch_with_glob -- fi*.tx?' returns successfully
        Config=x86_64-clang
        ======================================================================
        FAIL: test_with_dwarf (TestLaunchWithGlob.LaunchWithGlobTestCase)
        ----------------------------------------------------------------------
        Traceback (most recent call last):
          File "/Users/testuser/build/workspace/LLDB_master_release_OSX/llvm_master/tools/lldb/test/lldbtest.py", line 473, in wrapper
            return func(self, *args, **kwargs)
          File "/Users/testuser/build/workspace/LLDB_master_release_OSX/llvm_master/tools/lldb/test/functionalities/launch_with_glob/TestLaunchWithGlob.py", line 28, in test_with_dwarf
            self.do_test ()
          File "/Users/testuser/build/workspace/LLDB_master_release_OSX/llvm_master/tools/lldb/test/functionalities/launch_with_glob/TestLaunchWithGlob.py", line 42, in do_test
            self.runCmd("process launch -G true -w %s -- fi*.tx?" % (os.getcwd()))
          File "/Users/testuser/build/workspace/LLDB_master_release_OSX/llvm_master/tools/lldb/test/lldbtest.py", line 1953, in runCmd
            msg if msg else CMD_MSG(cmd))
        AssertionError: False is not True : Command 'process launch -G true -w /Users/testuser/build/workspace/LLDB_master_release_OSX/llvm_master/tools/lldb/test/functionalities/launch_with_glob -- fi*.tx?' returns successfully
      ```
      
      Reviewers: epertoso, emaste, abidh, clayborg, zturner
      
      Reviewed By: clayborg
      
      Subscribers: abidh, lldb-commits, emaste, epertoso, zturner, clayborg
      
      Differential Revision: http://reviews.llvm.org/D7550
      
      llvm-svn: 229148
      14a92711
    • Vince Harron's avatar
      Fix TestProcessIO.py when run against a remote target · 4a8abd3f
      Vince Harron authored
      Fixed test case to copy redirected stdout/stderr files from remote
      target to host
      
      llgs wasn't bothering to put the pty master file handle in the right
      place if stdout/stderr were redirected to a file. It is still needed
      for stdin.
      
      Corrected some log message text
      
      llvm-svn: 229141
      4a8abd3f
    • Ilia K's avatar
      Add test that checks (gdb) prompt in case of unknown command (MI) · 069dafa4
      Ilia K authored
      llvm-svn: 229139
      069dafa4
    • Ilia K's avatar
      576a4a7e
    • Ilia K's avatar
      Fix -data-read-memory-bytes command (MI) · b4a110f0
      Ilia K authored
      Summary:
      * Add IsHexadecimalNumber method to CMIUtilString (MI)
      * Add number format (dec,hex,auto) to CMICmdArgValNumber (MI)
      * Fix -data-read-memory-bytes to pass address in hex format (MI)
      * Fix output begin/end/offset fields format in -data-read-memory-bytes
      * Fix CMICmdArgValNumber::ExtractNumber to extract 64bit value
      * + tests
      
      All tests passed on OS X
      
      Reviewers: abidh, zturner, clayborg
      
      Reviewed By: clayborg
      
      Subscribers: lldb-commits, zturner, clayborg, abidh
      
      Differential Revision: http://reviews.llvm.org/D7610
      
      llvm-svn: 229132
      b4a110f0
    • Ilia K's avatar
      Add missing prompt when command doesn't exist (MI) · a4897fe7
      Ilia K authored
      It fixes the following example:
      ```
      $ bin/lldb-mi --interpreter
      (gdb)
      -not-found
      ^error,msg="Driver. Received command '-not-found'. It was not handled. Command 'not-found' not in Command Factory"
      -not-found
      ^error,msg="Driver. Received command '-not-found'. It was not handled. Command 'not-found' not in Command Factory"
      ```
      
      After the fix it looks like:
      ```
      $ bin/lldb-mi --interpreter
      -not-found
      ^error,msg="Driver. Received command '-not-found'. It was not handled. Command 'not-found' not in Command Factory"
      (gdb)
      -not-dounf
      ^error,msg="Driver. Received command '-not-dounf'. It was not handled. Command 'not-dounf' not in Command Factory"
      (gdb)
      ```
      
      llvm-svn: 229131
      a4897fe7
    • Ilia K's avatar
      Fix Arg0 argument after r229110. The problem was that Arg0ValueChangedCallback... · cc39d3f4
      Ilia K authored
      Fix Arg0 argument after r229110. The problem was that Arg0ValueChangedCallback isn't twitching when Arg0 was updated, therefore target was launched with empty 1st argument or without it at all. In this patch I update Arg0 by hand.
      
      llvm-svn: 229125
      cc39d3f4
    • Ilia K's avatar
      Add -exec-arguments command · 8f37ca56
      Ilia K authored
      Summary:
      This patch adds -exec-arguments command for lldb-mi. -exec-arguments command allows to specify arguments for executable file in MI mode. Also it contains tests for that command.
      
      Btw, new added files was formatted by clang-format.
      
      Reviewers: abidh, zturner, clayborg
      
      Reviewed By: clayborg
      
      Subscribers: zturner, emaste, clayborg, jingham, lldb-commits
      
      Differential Revision: http://reviews.llvm.org/D6965
      
      llvm-svn: 229110
      8f37ca56
    • Tamas Berghammer's avatar
      Fix configure+make build broken by r228943 (part 2) · f5f2ace2
      Tamas Berghammer authored
      llvm-svn: 229104
      f5f2ace2
    • Hafiz Abid Qadeer's avatar
      Fix for http://llvm.org/bugs/show_bug.cgi?id=21744 · 095b1286
      Hafiz Abid Qadeer authored
      GetVariableInfo () collected the values of the variable in a list. But it also
      tried to generate the name/value pairs for children. This caused generation of
      a wrong value string for may items. This function has been fixed to put value in
      the list only.
      
      The handling of --print-value related option has been moved to caller.
      
      GetVariableInfo2 and MIResponseFormVariableInfo3 have been removed. They were
      almost the duplicate of functions of similar names. I dont see any difference in
      the output of -stack-list-locals and -stack-list-arguments. So these functions
      just seemed unnecessary.
      
      Char variable was being printed as a string which caused garbage output. This has
      been fixed.
      
      Some misc. cleanup.
      
      Test cases have been added that check -stack-list-locals for struct, array and
      pointers. Modified other tests which depended on hard coded line numbers.
      
      Reviewed in http://reviews.llvm.org/D7589
      
      llvm-svn: 229102
      095b1286
    • Ilia K's avatar
      c9a475d4
    • Tamas Berghammer's avatar
      Fix configure+make build broken by r228943 · e3c31354
      Tamas Berghammer authored
      llvm-svn: 229098
      e3c31354
    • Chandler Carruth's avatar
      Disable a warning for the python modules as the python C API headers · 80b5f793
      Chandler Carruth authored
      trigger this warning. With this, 'ninja' succeeds without warnings for
      me on Linux.
      
      llvm-svn: 229096
      80b5f793
    • Chandler Carruth's avatar
      Fix the last two warnings I see on Linx building 'lldb': mismatched · d066d3a7
      Chandler Carruth authored
      signed and unsigned types in comparisons.
      
      For the text offset, use the addr_t type that is used elsewhere to get
      these kinds of offsets, and which it is being compared against. This
      seems to make things more consistent.
      
      For the other, the numbers are clearly small and uninteresting, so just
      cast them to the most boring 'int' type.
      
      llvm-svn: 229085
      d066d3a7
    • Chandler Carruth's avatar
      Fix four missing 'override' specifiers found with the Clang · 40927d0d
      Chandler Carruth authored
      '-Winconsistent-missing-override' warning. I suggest folks use this to
      ensure that override is consistently used to mark virtual function
      overrides.
      
      llvm-svn: 229084
      40927d0d
    • Chandler Carruth's avatar
      Remove an unused variable found with a Clang warning. · f7888ab3
      Chandler Carruth authored
      llvm-svn: 229083
      f7888ab3
    • Greg Clayton's avatar
      Add a ModuleList::ForEach(...) which takes the module list mutex calls the... · d6346e6f
      Greg Clayton authored
      Add a ModuleList::ForEach(...) which takes the module list mutex calls the std::function argument with each module. If you return true in the callback, iteration will continue, if you return false, iteration will stop and the lock will be released.
      
      <rdar://problem/19213054>
      
      llvm-svn: 229008
      d6346e6f
    • Enrico Granata's avatar
      I had recently added a new SBFrame::GetVariables() overload with yet another bool argument · e0d951db
      Enrico Granata authored
      We talked about it internally - and came to the conclusion that it's time to have an options class
      
      This commit adds an SBVariablesOptions class and goes through all the required dance
      
      llvm-svn: 228975
      e0d951db
  2. Feb 12, 2015
  3. Feb 11, 2015
Loading