1. 537a7a8 Fixed an issue where we were resolving paths when we should have been. by Greg Clayton · 14 years ago
  2. 72bc92e Remove the two @expectedFailure decorators as the bug has been fixed on tot. by Johnny Chen · 14 years ago
  3. f6bdb19 Make the breakpoint condition test more robust with regard to checking the correct by Johnny Chen · 14 years ago
  4. 73a8710 Clean up the teardown logic to make it more robust and to record the additions and by Johnny Chen · 14 years ago
  5. a720ff4 Fix wrong test logic with regard to hit count and resolved status of disabled/enabled breakpoints. by Johnny Chen · 14 years ago
  6. 1de036b Don't re-insert disabled breakpoint locations. by Jim Ingham · 14 years ago
  7. bc17550 For UserSettingsController::UpdateDictionaryVariable(), clear the dictionary by Johnny Chen · 14 years ago
  8. 6297a3a Don't cache the public stop reason, since it can change as plan completion gets processed. That means GetStopReason needs to return a shared pointer, not a pointer to the thread's cached version. Also allow the thread plans to get and set the thread private stop reason - that is usually more appropriate for the logic the thread plans need to do. by Jim Ingham · 14 years ago
  9. ab06af9 Fixed a silly bug that was causing the "this" pointer by Sean Callanan · 14 years ago
  10. 705737b Restoring the original setting should be done more robustly by adding a hook function by Johnny Chen · 14 years ago
  11. bb0c91f Ok, last commit for the running processes in a new window. Now you can by Greg Clayton · 14 years ago
  12. eb4f7a8 Add Python doc string for setTearDownCleanup() method. by Johnny Chen · 14 years ago
  13. 7654550 test_set_output_path() should restore the original setting of target.process.output-path by Johnny Chen · 14 years ago
  14. 1af4e79 Removed a bit of dead code. Thanks to Eric Christopher for pointing it out. by Sean Callanan · 14 years ago
  15. ba8547d Expressions now claim responsibility for all stops by Sean Callanan · 14 years ago
  16. 843429b Finish the first draft of a detailed walkthrough of an lldb test method. by Johnny Chen · 14 years ago
  17. 44820ec Fixed the message that reports that an expression by Sean Callanan · 14 years ago
  18. ee8e3ee Add more descriptive messages to expect() instead of using the default assert messages. by Johnny Chen · 14 years ago
  19. db9cbe9 Add a little helper function SETTING_MSG(setting) to be used from TestSettings.test_set_output_path(). by Johnny Chen · 14 years ago
  20. 0e4a2bd Remove the two @skip decorators now that we are not seeing the hang while running the test suite. by Johnny Chen · 14 years ago
  21. 6bd1a9e Fixed all known race conditions with starting a process in a new terminal. by Greg Clayton · 14 years ago
  22. 935f1b1 Initial version of a detailed walkthrough of a test case (test/settings/TestSettings.py). by Johnny Chen · 14 years ago
  23. ea3259d Use AppleScript when lauching inferior in terminal so the command that by Greg Clayton · 14 years ago
  24. d296521 Change the environment variable name to be more descriptive from LLDB_TIME_WAIT to LLDB_TIME_WAIT_NEXT_LAUNCH. by Johnny Chen · 14 years ago
  25. 36f63a9 Stop the driver from handling SIGPIPE in case we communicate with stale by Greg Clayton · 14 years ago
  26. 43eefce Modify the command passed to command interpreter from 'expr' (which is an alias of 'expression') by Johnny Chen · 14 years ago
  27. ce68146 Modify the test driver and lldbtest.TestBase so that the dumping of session info by Johnny Chen · 14 years ago
  28. 6bc0b6b Add an assert that 'output.txt' exists before opening it. by Johnny Chen · 14 years ago
  29. c8b0e90 Add header files that were added to lldb.swig to the build by Caroline Tice · 14 years ago
  30. 3a62e6d Combine eArgTypeSignalName and eArgTypeUnixSignalNumber into a single by Caroline Tice · 14 years ago
  31. 8101504 Uncomment the @skip decorator to reproduce the hang while running the test suite. by Johnny Chen · 14 years ago
  32. 8b5a077 Fix small mistake in previous commit (fixing aliases for commands that by Caroline Tice · 14 years ago
  33. d4e53a9 Remove out-dated comments. by Johnny Chen · 14 years ago
  34. b5e6e61 Add a docs/testsuite directory for tips on writing lldb test cases. by Johnny Chen · 14 years ago
  35. 0fb069d Fix bug where aliases for commands that take raw input were not by Caroline Tice · 14 years ago
  36. 5867f6b Prevent Python script interpreter initialization from changing by Caroline Tice · 14 years ago
  37. ea12825 Add a case to test that after 'set auto-confirm true', manual confirmation should not kick in. by Johnny Chen · 14 years ago
  38. 59b8477 Also change the utility functions in lldbutil.py, too, to correspond to the StateType representation change. by Johnny Chen · 14 years ago
  39. 8a87d52 The StateType representation has been changed. Modify the test cases to accommodate. by Johnny Chen · 14 years ago
  40. 3b2c41c Still trying to get detach to work with debugserver. Got a bit closer, by Greg Clayton · 14 years ago
  41. c1d3775 Fixed debugserver to properly attach to a process by name with the by Greg Clayton · 14 years ago
  42. 24b48ff Added a new Host call to find LLDB related paths: by Greg Clayton · 14 years ago
  43. 21f5fe1 prefix more stuff with '$' to make sure we don't go trying to lookup anything by Greg Clayton · 14 years ago
  44. e8a17a9 Fixed an issue with MachTask::TaskResume () where if the task was already by Greg Clayton · 14 years ago
  45. 5486d07 Missed this spot where module.cleanup() can be passed a test instance to by Johnny Chen · 14 years ago
  46. 1b7d629 Some re-achitecturing of the plugins interface. The caller is now required to by Johnny Chen · 14 years ago
  47. 16a4fef Use line_number() utility function to find the number from main.c to test against by Johnny Chen · 14 years ago
  48. 895c2c5 Remove the @expectedFailure decorators, as rdar://problem/8542091 is supposed to be fixed. by Johnny Chen · 14 years ago
  49. ed5f04e Don't wrap StringIO inside a with statement. It is not a context manager. by Johnny Chen · 14 years ago
  50. bd296c6 Fixed the UnixSignals class to be able to get a signal by name, short name, or signal number when using: by Greg Clayton · 14 years ago
  51. 4bbae92 Use the ValueObject directly where possible. by Jim Ingham · 14 years ago
  52. 8de27c7 Made many ConstString functions inlined in the header file. by Greg Clayton · 14 years ago
  53. 80c1f6f Mark a ValueObjectConstResult as valid if it is created with some data, don't wait till it gets updated. by Jim Ingham · 14 years ago
  54. 734b483 Disable "process.macosx" plugin, since it is not being actively supported by Caroline Tice · 14 years ago
  55. 2078efa Make sure to close the string buffer when finished. by Johnny Chen · 14 years ago
  56. e33ea6b Remove the @skip("Skip due to deadlock?") decorators. Change the command to by Johnny Chen · 14 years ago
  57. 8ce3cfb Add two @expectedFailure decorators for: by Johnny Chen · 14 years ago
  58. 31cf8e2 Add a test case for exercising breakpoint conditions using the lldb command: by Johnny Chen · 14 years ago
  59. c55dace Add a const string for assert message. Remove extra printing of newlines from by Johnny Chen · 14 years ago
  60. 3f6d14e There's no need to explicitly call lldb.SBDebugger.Initialize() now. It is done by Johnny Chen · 14 years ago
  61. 314a145 Add more comments. by Johnny Chen · 14 years ago
  62. 7c565c8 Be more specific about cases whenthe runCmd() check flag is False, meaning there by Johnny Chen · 14 years ago
  63. f4c7ae0 Skip checking for a bunch of built-ins when evaluating an expression. by Greg Clayton · 14 years ago
  64. 0e0e81d Did a bit of parameter renaming. by Greg Clayton · 14 years ago
  65. deb391c Added short names and descriptions to the UnixSignals class. Also cleaned up by Greg Clayton · 14 years ago
  66. 595c9d7 Simply use the TestBase.markFailure() callback method to set the __failed__ flag. by Johnny Chen · 14 years ago
  67. fcf06fb Separated the DWARF index for types from that the index of the namespaces by Greg Clayton · 14 years ago
  68. 84a6d6f This is an initial version of test driver enhanceent to be able to dump the by Johnny Chen · 14 years ago
  69. d168690 Added support for breakpoint conditions. I also had to separate the "run the expression" part of ClangFunction::Execute from the "Gather the expression result" so that in the case of the Breakpoint condition I can move the condition evaluation into the normal thread plan processing. by Jim Ingham · 14 years ago
  70. bf8e42b Fixed an expression parsing issue where if you were stopped somewhere without by Greg Clayton · 14 years ago
  71. e747198 Modify "process handle" so that if no signals are specified it lists/updates them all, by Caroline Tice · 14 years ago
  72. 0910eb3 Make calling the super class's setUp() method less fragile. by Johnny Chen · 14 years ago
  73. 0b48015 Wrap the file writing operations inside a with statement to simplify code. by Johnny Chen · 14 years ago
  74. 6b6f5ba Change the call within lldb.py to 'SBDebugger.Initialize()' from 'lldb.SBDebugger.Initialize()'. by Johnny Chen · 14 years ago
  75. 5b33af2 Add more comments and wait a little bit after resuming the inferior process before by Johnny Chen · 14 years ago
  76. d7a4eb0 Add an initial version of test that exercise the lldb commands: 'process signal' by Johnny Chen · 14 years ago
  77. 028784b Fix a regression introduced in r116430 with the added 'break' statement, by Johnny Chen · 14 years ago
  78. 23d6f27 Add new argument type, eArgSignalName, by Caroline Tice · 14 years ago
  79. 34f9922 Fix these comments and the commented out code about 'frame variable -t', too. by Johnny Chen · 14 years ago
  80. c401e37 Apply (query-replace "frame variable" "frame variable -t") and fix a comment about 'expr var', by Johnny Chen · 14 years ago
  81. b227e14 Default "frame variable" to not show types before values by default. You now enable type display with --show-types or -t (instead of disabling it with --no-types or -t). by Greg Clayton · 14 years ago
  82. 71f3bef Add a test case for the test/forward directory with @expectedFailure decorator by Johnny Chen · 14 years ago
  83. fb7c51c Fixed C++ class clang type creation and display by making sure we omit by Greg Clayton · 14 years ago
  84. 2014e80 Avoid using hardcoded line number to break on. Use the line_number() utility by Johnny Chen · 14 years ago
  85. 4b5bd22 Avoid using hardcoded line number to break on. Use the line_number() utility by Johnny Chen · 14 years ago
  86. dc3f4f6 Avoid using hardcoded line number to break on. Use the line_number() utility by Johnny Chen · 14 years ago
  87. 45ac7ac Avoid using hardcoded line number to break on. Use the line_number() utility by Johnny Chen · 14 years ago
  88. d906f7f Update the comment with reagard to a bug filed against possible clang-generated by Johnny Chen · 14 years ago
  89. 5acb0e3 Avoid using hardcoded line number to break on. Use the line_number() utility by Johnny Chen · 14 years ago
  90. ed1829e Comment out code that was preventing commands that take raw input strings by Caroline Tice · 14 years ago
  91. 7b54cf4 Avoid using hardcoded line number to break on. Use the line_number() utility by Johnny Chen · 14 years ago
  92. dffb7db Avoid using hardcoded line number to break on. Use the line_number() utility by Johnny Chen · 14 years ago
  93. 1439142 Avoid using hardcoded line number to break on. Use the line_number() utility by Johnny Chen · 14 years ago
  94. 3439178 Replace contains_string with 'strcasestr' from libc. by Caroline Tice · 14 years ago
  95. 2016d3d Avoid using hardcoded line number to break on. Use the line_number() utility by Johnny Chen · 14 years ago
  96. 7bafa91 Avoid using hardcoded line number to break on. Use the line_number() utility by Johnny Chen · 14 years ago
  97. 75be616 Avoid using hardcoded line number to break on. Use the line_number() utility by Johnny Chen · 14 years ago
  98. bd5c63e Fix some memory leaks. by Caroline Tice · 14 years ago
  99. 83626d4 Avoid using hardcoded line number to break on. Use the line_number() utility by Johnny Chen · 14 years ago
  100. 4b6630e Fix an obvious cut-and-paste error. by Johnny Chen · 14 years ago