Skip to content
  1. Aug 01, 2011
  2. Jul 29, 2011
  3. Jul 12, 2011
    • Johnny Chen's avatar
      Passing in os.ctermid() as the arg for SBTarget.Launch(...) for stdin_path,... · 1d3e880c
      Johnny Chen authored
      Passing in os.ctermid() as the arg for SBTarget.Launch(...) for stdin_path, stdout_path, and stderr_path
      is just wrong and resulted in the inferior's output getting mixed into the GDB remote communication's
      log file.  Change all test cases to not pass os.ctermid() and either use SBTarget.LaunchSimple() or
      SBTarget.Launch() and pass None as stdin_path/stdout_path/srderr_path to use a pseudo terminal.
      
      rdar://problem/9716499 program output is getting mixed into the GDB remote communications
      
      llvm-svn: 134940
      1d3e880c
  4. Jul 11, 2011
  5. Jun 28, 2011
  6. Jun 16, 2011
  7. May 24, 2011
  8. May 19, 2011
  9. May 13, 2011
    • Sean Callanan's avatar
      Introduced support for UnknownAnyTy, the Clang type · 77502265
      Sean Callanan authored
      representing variables whose type must be inferred
      from the way they are used.  Functions without debug
      information now return UnknownAnyTy and must be cast.
      
      Variables with no debug information are not yet using
      UnknownAnyTy; instead they are assumed to be void*.
      Support for variables of unknown type is coming (and,
      in fact, some relevant support functions are included
      in this commit) but will take a bit of extra effort.
      
      The testsuite has also been updated to reflect the new
      requirement that the result of printf be cast, i.e.
      
      expr (int) printf("Hello world!")
      
      llvm-svn: 131263
      77502265
  10. May 11, 2011
  11. May 10, 2011
  12. Apr 27, 2011
  13. Apr 26, 2011
  14. Feb 04, 2011
  15. Jan 23, 2011
  16. Dec 14, 2010
  17. Dec 10, 2010
    • Johnny Chen's avatar
      Fix a test method docstring. · 89068140
      Johnny Chen authored
      llvm-svn: 121446
      89068140
    • Johnny Chen's avatar
      Add an infrastructure to mark the Python APIs only test using a decorator. · 7c7d936e
      Johnny Chen authored
      Example:
      
          @python_api_test
          def test_evaluate_expression_python(self):
              """Test SBFrame.EvaluateExpression() API for evaluating an expression."""
          ...
      
      The opposite of Python APIs only test is an lldb command line test, which sends
      commands to the lldb command interpreter.  Add a '-a' option to the test driver
      to skip Python API only tests.
      
      Modify TestExprs.py to mark a test as @python_api_test and remove an @expectedFailure
      decorator as the bug has been fixed.
      
      llvm-svn: 121442
      7c7d936e
  18. Dec 09, 2010
  19. Dec 08, 2010
  20. Dec 07, 2010
  21. Dec 06, 2010
  22. Nov 30, 2010
  23. Nov 09, 2010
Loading