Skip to content
  1. Oct 13, 2010
  2. Oct 12, 2010
    • Johnny Chen's avatar
      Avoid using hardcoded line number to break on. Use the line_number() utility · 3bfb8c01
      Johnny Chen authored
      function to get the line number to break on during setUp().
      
      llvm-svn: 116346
      3bfb8c01
    • Caroline Tice's avatar
      Fix some memory leaks. · 4ab31c98
      Caroline Tice authored
      Add call to lldb.SBDebugger.Initialize() to lldb.py, so it automatically gets called when
      the lldb Python module gets loaded.
      
      llvm-svn: 116345
      4ab31c98
    • Johnny Chen's avatar
      Avoid using hardcoded line number to break on. Use the line_number() utility · 48daa1fd
      Johnny Chen authored
      function to get the line number to break on during setUp().
      
      llvm-svn: 116344
      48daa1fd
    • Johnny Chen's avatar
      Fix an obvious cut-and-paste error. · 370799c2
      Johnny Chen authored
      llvm-svn: 116343
      370799c2
    • Johnny Chen's avatar
      Added the capability for the test driver to split the sys.stderr/sys.stdout into · 10093aa5
      Johnny Chen authored
      different configuration-based files using the config file.  For example:
      
          sys.stderr = open("/tmp/lldbtest-stderr", "w")
          sys.stdout = open("/tmp/lldbtest-stdout", "w")
          compilers = ["gcc", "llvm-gcc"]
          archs = ["x86_64", "i386"]
          split_stderr = True # This will split the stderr into configuration-specific file
          split_stdout = True # This will split the stdout into configuration-specific file
      
      will produce:
      
      /tmp/lldbtest-stderr
      /tmp/lldbtest-stderr.arch=i386-compiler=gcc
      /tmp/lldbtest-stderr.arch=i386-compiler=llvm-gcc
      /tmp/lldbtest-stderr.arch=x86_64-compiler=gcc
      /tmp/lldbtest-stderr.arch=x86_64-compiler=llvm-gcc
      /tmp/lldbtest-stdout
      /tmp/lldbtest-stdout.arch=i386-compiler=gcc
      /tmp/lldbtest-stdout.arch=i386-compiler=llvm-gcc
      /tmp/lldbtest-stdout.arch=x86_64-compiler=gcc
      /tmp/lldbtest-stdout.arch=x86_64-compiler=llvm-gcc
      
      as a result of splitting stderr and stdout.  In addition, each configuration can have
      its individual top level relocated directory to house the test files as well as the
      intermediate files by using '-r dir' to relocate the tests into a new relocated directory
      instead of running the tests in place.
      
      llvm-svn: 116341
      10093aa5
Loading