Skip to content
  1. Jul 18, 2014
    • Zachary Turner's avatar
      Make lldb -P work on Windows. · c9bf0c70
      Zachary Turner authored
      lldb -P, which outputs its python path, works by using Host-layer
      facilities to get information about the loaded python module.  This
      Host functionality was unimplemented on Windows, so this patch
      implements it.  Additionally, it removes a pexpect dependency from
      the test runner and uses an equivalent invocation of subprocess.
      
      Reviewed by: Todd Fiala
      
      Differential Revision: http://reviews.llvm.org/D4548
      
      llvm-svn: 213410
      c9bf0c70
    • Zachary Turner's avatar
      Fixes a number of issue related to test portability on Windows. · 045fde58
      Zachary Turner authored
      99% of this CL is simply moving calls to "import pexpect" to a more
      narrow scope - i.e. the function that actually runs a particular
      test.  This way the test suite can run on Windows, which doesn't have
      pexpect, and the individual tests that use pexpect can be disabled on
      a platform-specific basis.
      
      Additionally, this CL fixes a few other cases of non-portability.
      Notably, using "ps" to get the command line, and os.uname() to
      determine the architecture don't work on Windows.  Finally, this
      also adds a stubbed out builder_win32 module.
      
      The full test suite runs correctly on Windows after this CL, although
      there is still some work remaining on the C++ side to fix one-shot
      script commands from LLDB (e.g. script print "foo"), which currently
      deadlock.
      
      Reviewed by: Todd Fiala
      
      Differential Revision: http://reviews.llvm.org/D4573
      
      llvm-svn: 213343
      045fde58
    • Greg Clayton's avatar
      Fixed the objective C symbol parsing in ObjectFileMachO. · 26a15efa
      Greg Clayton authored
      This fixes all of the hidden ivar test cases and any case where we try to find the full definition of an objective C class.
      
      This also means hidden ivars show up again.
      
      <rdar://problem/15458957>
      llvm.org/pr20270
      llvm.org/pr20269
      llvm.org/pr20272
      
      llvm-svn: 213328
      26a15efa
  2. Jul 16, 2014
    • Todd Fiala's avatar
      gdb-remote test noise suppression on MacOSX. · f9ad21d2
      Todd Fiala authored
      This change adds a member to the base test case for gdb-remote that
      indicates whether a stub makes two X stop notification reports on kill
      commands.  This is set to true for debugserver tests.
      
      The test for killing an attached process after it's first stop notification
      has been modified to look at that flag and add an extra X packet matcher
      so the "unmatched packet warning" doesn't get emitted for the second X on
      MacOSX with debugserver.
      
      I also broke those tests out of the monolithic TestLldbGdbServer mega test
      case and put it in its own, new TestGdbRemoteKill.py file and test case.
      
      Tested:
      Ubuntu 14.04 x86_64, clang-3.5 built lldb, no test failures.
      MacOSX 10.9.4, Xcode 6.0 Beta 3 built lldb, no test failures.
      
      llvm-svn: 213166
      f9ad21d2
    • Greg Clayton's avatar
      Fixed the an objective C test case so it passes correctly. · 2c156f85
      Greg Clayton authored
      Fixed the test case to use a runtime function prototype that will be correct ([NSString stringWithCString: "new"]) instead of one that won't (expression str = [NSString stringWithFormat: @"%cew", 'N']). The runtime doesn't track vararg functions correctly so we can't reconstitute the function correctly.
      
      Also fixed some expressions that used "str_id" whose type was "id" and do the necessary casting since "id" doesn't have any methods.
      
      llvm-svn: 213113
      2c156f85
    • Greg Clayton's avatar
      TestObjCMethods.FoundationTestCase was failing due to an error, fixed now. · 0d830b42
      Greg Clayton authored
      <rdar://problem/16322133>
      llvm.org/pr20267
      
      llvm-svn: 213111
      0d830b42
    • Greg Clayton's avatar
      Fix compile warning. · 325948cc
      Greg Clayton authored
      llvm-svn: 213106
      325948cc
  3. Jul 14, 2014
    • Todd Fiala's avatar
      Modified gdb-remote tests to run with automatically-chosen ports. · 24189d4c
      Todd Fiala authored
      Now that llgs supports communicating the 0-port choose-a-port
      mechanism and can communicate that back to a caller via the
      --named-pipe option (at parity with debugserver), we use this
      mechanism to always start llgs and debugserver gdb-remote
      protocol tests without needing to use some port arbitration
      mechanism.  This eliminates some potential intermittent failures vs. the
      previous random port and collision-avoidance strategy used.
      
      llvm-svn: 212923
      24189d4c
  4. Jul 12, 2014
  5. Jul 10, 2014
  6. Jul 09, 2014
  7. Jul 08, 2014
    • Bruce Mitchener's avatar
      Fix typos. · aaa0ba31
      Bruce Mitchener authored
      llvm-svn: 212553
      aaa0ba31
    • Todd Fiala's avatar
      Remove hack from dotest.py to fix extra output on -P command, and fix MacOSX... · 9189e034
      Todd Fiala authored
      Remove hack from dotest.py to fix extra output on -P command, and fix MacOSX multi-threaded test run collisions on crashlog.dylib.
      
      On MacOSX, we need to adjust the way we clean up the crashlog dylib in deleteCrashInfoDylib().
      Right now it is only geared to run one test at a time.  For now I'm just skipping the delete.
      I'll work with Apple on a fix that handles this.  It seems to only cause one dylib total to
      hang around that might otherwise have been deleted.  Fixes MacOSX multiple tests running
      at the same time.  (I didn't hit this on Yosemite, might be an issue that only shows up
      on Mavericks?)
      
      llvm-svn: 212548
      9189e034
    • Todd Fiala's avatar
      Enable multi-process testing for MacOSX. · 3f0a360f
      Todd Fiala authored
      This change modifies the way the multi-threaded test runner works.
      It uses the Python multiprocessing library rather than the threading
      library.  Investigation showed that all MacOSX threads were waiting on
      the global python lock when using the threading approach.  Not sure
      why that differed from the Linux/FreeBSD implementations.
      
      The new approach uses the multiprocessing library's Pool class.  It's
      mildly cleaner than the other version, runs multithreaded on MacOSX,
      and seems to have caused no performance regression on Linux.  The
      worker thread logic is simpler with the Pool managing the worker
      processes.
      
      This also includes a minor change to the test runner's python
      lldb dir logic using the -P option.  It now looks at the last line
      of output rather than the first line.  This covers part of the issue
      of extra options validation logic getting spit out.  The test runner
      will now pick up the right python library directory.  It does not
      fix all the issues, though, as a ton of tests (50+ on Linux) are
      failing due to unexpected output when running lldb.
      
      llvm-svn: 212513
      3f0a360f
    • Jim Ingham's avatar
      If a hand-called function is interrupted by hitting a breakpoint, then · 30fadafe
      Jim Ingham authored
      when you continue to finish off the function call, the expression result
      will be included as part of the thread stop info.
      
      llvm-svn: 212506
      30fadafe
  8. Jul 07, 2014
  9. Jul 02, 2014
Loading