1. 028d8eb Add an option '-S' to skip the build and cleanup while running the test. by Johnny Chen · 13 years ago
  2. 22ca65d Docstring clarification. by Johnny Chen · 13 years ago
  3. 30b30cb Also dump the pid of the process launching through the lldbtest.system(*popenargs, **kwargs) API. by Johnny Chen · 13 years ago
  4. 644ad08 Modify lldbtest.Base.runHooks() to now take the following keyword arguments: by Johnny Chen · 13 years ago
  5. 5f3c567 Extract the run hooks functionality into the base class lldbtest.Base. by Johnny Chen · 13 years ago
  6. 7d7f447 If we spawn an lldb process for test (via pexpect), do not load the init file unless told otherwise. by Johnny Chen · 13 years ago
  7. 90c56e6 o lldbtest.py: by Johnny Chen · 13 years ago
  8. 58c66e2 Add a simple watchpoint test to exercise watchpoint creation followed by watchpoint hit events. by Johnny Chen · 13 years ago
  9. 6033bed Add a new attribute self.lldbHere, representing the fullpath to the 'lldb' executable by Johnny Chen · 13 years ago
  10. b7058c5 Pretty print the run options for dumpSessionInfo(self) client. by Johnny Chen · 13 years ago
  11. 7c9136b Minor change for the @expectedFailureClang logic. For the non-clang test failure, re-raise by Johnny Chen · 13 years ago
  12. 65040cb Add a decorator for marking clang only expectedFailure. Use it for the test_step_over_3_times_with_dsym/dwarf() by Johnny Chen · 13 years ago
  13. 770683d Add comment about recent change. by Johnny Chen · 13 years ago
  14. 8339f98 Fix the test suite error of: by Johnny Chen · 13 years ago
  15. cd1df5a Forgot to initialize the self.__skipped__ attribute lldbtest.Base. by Johnny Chen · 13 years ago
  16. f5b8909 Test driver should also report skipped tests because there were cases when tests were skipped by Johnny Chen · 13 years ago
  17. 7f9985a Add TestInferiorChanged.py to test that lldb reloads the inferior after it was changed during the debug session. by Johnny Chen · 13 years ago
  18. 6fd55f1 When a benchmarks test fails, the re-run command should include the '+b' option instead of the '-t' option. by Johnny Chen · 13 years ago
  19. d7e04d9 o modify-python-lldb.py: by Johnny Chen · 13 years ago
  20. 113388f Add the real benchmarks comparing lldb against gdb for repeated expression evaluations. by Johnny Chen · 13 years ago
  21. 71cb797 Add an abstract base class called BenchBase to be inherited by benchmark tests. by Johnny Chen · 13 years ago
  22. cbe5126 More refactorings to migrate logic from TestBase to its parent class. by Johnny Chen · 13 years ago
  23. 366fb8c Start refactoring lldbtest.TestBase so that it inherits from a newly created lldbtest.Base class, by Johnny Chen · 13 years ago
  24. 82ccf40 Add a @benchmarks_test decorator for test method we want to categorize as benchmarks test. by Johnny Chen · 13 years ago
  25. 5503d46 Add TestValueAPI.py to exercise the newly added/modified SBValue APIs: by Johnny Chen · 13 years ago
  26. 57cd6dd Update the test scenario for find_global_variables() to now start the inferior process by Johnny Chen · 13 years ago
  27. c0dbdc0 Add TestPrintObj.py to go with lang/objc/print-objc, which: by Johnny Chen · 13 years ago
  28. b7e27f4 o lldbtest.py: by Johnny Chen · 13 years ago
  29. 9a9fcf6 For now, insert some delays between succesive test cases in the test/types directory by Johnny Chen · 13 years ago
  30. 39bd536 Add a builder module for Linux (plus some refactoring) by Peter Collingbourne · 13 years ago
  31. ef6f476 Simplify the base test class. Remove keyword argument setCookie from TestBase.runCmd() and by Johnny Chen · 13 years ago
  32. 409646d Add an API to SBDebugger class: by Johnny Chen · 13 years ago
  33. 5fd8612 Removed unneeded method breakAfterLaunch() from the TestBase class to simplify our base class. by Johnny Chen · 13 years ago
  34. 35ec4f1 Remove extra whitespace. by Johnny Chen · 13 years ago
  35. d8c1dd3 Fix out-dated module docstring for lldbtest.py. Also wrap some lldb attribute references by Johnny Chen · 13 years ago
  36. 006b595 Move some comments to the docstrings. by Johnny Chen · 13 years ago
  37. 7c8d0d4 Fix some comments. by Johnny Chen · 13 years ago
  38. b877031 Add comment headers describing some method groups of our TestBase class. by Johnny Chen · 13 years ago
  39. 960ce12 Convert these two modules to use the compact truth value testing as well. by Johnny Chen · 13 years ago
  40. ac91027 Add an API test script file for SBCommandInterpreter. by Johnny Chen · 14 years ago
  41. ab2f066 For a test with unexpected success status, we also dump its session info into a unique file. by Johnny Chen · 14 years ago
  42. d4a094e Comment. by Johnny Chen · 14 years ago
  43. dedf087 Add comment for self.child_in_script_interpreter. by Johnny Chen · 14 years ago
  44. 058a24d Use standard lldb enum -- lldb.eStopReasonBreakpoint. by Johnny Chen · 14 years ago
  45. 3a4622e Add a test script for verifying that the convenience variables: by Johnny Chen · 14 years ago
  46. c4ca1b3 Use a more gentle way of shutting down the child process spawned during the test execution using pexpect. by Johnny Chen · 14 years ago
  47. 22ae967 A more robust pexpect-based test case for testing against the firing of stop hooks. by Johnny Chen · 14 years ago
  48. 47342d5 Change the rest of lldbutil.py's function names to all lower case formats to be consistent. by Johnny Chen · 14 years ago
  49. 281aed3 Add a HideStdout() method to our TestBase class and call it from TestAbbreviations.py by Johnny Chen · 14 years ago
  50. c391239 Modify docstring. by Johnny Chen · 14 years ago
  51. ab6378a Add a TraceOn(self) method to the base test class, which returns True if we are by Johnny Chen · 14 years ago
  52. 44dc9d3 Add a test script for exercising the "taregt create", "target list", and "target select" commands. by Johnny Chen · 14 years ago
  53. 33cd0c3 Forgot to check in this change with http://llvm.org/viewvc/llvm-project?view=rev&revision=129542. by Johnny Chen · 14 years ago
  54. 0bfa859 Turns out that the test failure wrt: by Johnny Chen · 14 years ago
  55. 7304147 Add a test directory stop-hook to test the newly added "target stop-hook" command. by Johnny Chen · 14 years ago
  56. 4f52c40 Discover the 'lldb' executable in the setUp() hook of the base test class. by Johnny Chen · 14 years ago
  57. c6d591b Some cleanup to plugins/darwin.py after the recent additions of '-A arch' and '-C compiler' by Johnny Chen · 14 years ago
  58. 5ec14f8 Deprecated old forms of SBTarget::Launch. There is not just one and no by Greg Clayton · 14 years ago
  59. 24af296 Fix a typo in the comment. by Johnny Chen · 14 years ago
  60. dcb3722 The test suite was unnecessarily doing a time.sleep() after performing the by Johnny Chen · 14 years ago
  61. 0ace30f Add a test case for the SBFrame APIs. In particular, it uses the frame API to by Johnny Chen · 14 years ago
  62. ec88274 Execute the test case teardown hooks in a LIFO (last in, first out) order. by Johnny Chen · 14 years ago
  63. 7a4512b Add TestBreakpointIgnoreCount.py to exercise the breakpoint ignore count features, by Johnny Chen · 14 years ago
  64. 3f1696c Make sure that @python_api_test is only used to decorate a test method, not the by Johnny Chen · 14 years ago
  65. 3ebdacc Add a '+a' command line option to the test driver to run only the Python API tests. by Johnny Chen · 14 years ago
  66. 4f93bf1 Add an infrastructure to mark the Python APIs only test using a decorator. by Johnny Chen · 14 years ago
  67. 6f7abb0 Add a test/source-manager directory for testing lldb core component SourceManager. by Johnny Chen · 14 years ago
  68. 8fd886c For SBTarget.Launch()/LaunchProcess(), there's no need to pass an empty string by Johnny Chen · 14 years ago
  69. 46ffd86 Fail fast by raising an exception if the 'string_to_match' cannot be located by Johnny Chen · 14 years ago
  70. 1ad9e99 Forgot to also check in this file along with the TestBreakpointConditions.py change. by Johnny Chen · 14 years ago
  71. 0eaaf32 Add a mechanism of overwriting the default 1.0 second wait time between test by Johnny Chen · 14 years ago
  72. ecfc3cf TestBase.setUp() needs to make sure lldb.blacklist is not None by Johnny Chen · 14 years ago
  73. 82e6b1e Add a '-b blacklistFile' option to the test driver to take a file specifying the by Johnny Chen · 14 years ago
  74. 24f43be Add an expect() statement within breakpoint_conditions() method which tests that by Johnny Chen · 14 years ago
  75. 458a67e Change the variable TestBase.timeWait to the more descriptive timeWaitNextLaunch. by Johnny Chen · 14 years ago
  76. 6b22756 Make the string matching for 'frame variable' more stringent with respect to by Johnny Chen · 14 years ago
  77. b527f26 The session log entry containing the command to rerun the same test now also includes by Johnny Chen · 14 years ago
  78. e8587d0 Some rewordings of the assert messages for process stopped due to breakpoint. by Johnny Chen · 14 years ago
  79. c82ac76 Add the actual stop reason to an assert message for bitfields_variable_python() by Johnny Chen · 14 years ago
  80. 55c1bfd When dumping the session log for a failed/errored test, also emit the command to by Johnny Chen · 14 years ago
  81. 05efcf78 Distinguish between the assert messages for runCmd and expect. The former now by Johnny Chen · 14 years ago
  82. 51d6b1c Make the type of session log part of the filename itself. It allows for easier by Johnny Chen · 14 years ago
  83. e625092 Fix comments. by Johnny Chen · 14 years ago
  84. 2c8d159 Add a test for Python API SBValue.GetValueType() inside TestArrayTypes.py for a by Johnny Chen · 14 years ago
  85. dd2bb2c Now that the test suite has very few expected failures remaining (2), it is a good by Johnny Chen · 14 years ago
  86. ddeba74 Add more comment for dumpSessionInfo(self) method. by Johnny Chen · 14 years ago
  87. 2986764 Replace the two call sites of inspect.getsource(obj) with a utility function by Johnny Chen · 14 years ago
  88. 12fc1dc Python API changes: SBValue.IsPtrType() -> SBValue.IsPointerType(). by Johnny Chen · 14 years ago
  89. 60881f6 Add comment on passing the assert message to self.runCmd(). by Johnny Chen · 14 years ago
  90. 05dd893 If TestBase.expect() is passed an assert message, pass it along when delegating to TestBase.runCmd() by Johnny Chen · 14 years ago
  91. 607b7a1 Add more docstring for the lldbtest.TestBase class. by Johnny Chen · 14 years ago
  92. 0601a29 Add test case for using SBBreakpointLocation to set break condition. by Johnny Chen · 14 years ago
  93. 125fc2b Add an option '-s session-dir-name' to overwrite the default timestamp-named by Johnny Chen · 14 years ago
  94. f6bdb19 Make the breakpoint condition test more robust with regard to checking the correct by Johnny Chen · 14 years ago
  95. 73a8710 Clean up the teardown logic to make it more robust and to record the additions and by Johnny Chen · 14 years ago
  96. 705737b Restoring the original setting should be done more robustly by adding a hook function by Johnny Chen · 14 years ago
  97. eb4f7a8 Add Python doc string for setTearDownCleanup() method. by Johnny Chen · 14 years ago
  98. db9cbe9 Add a little helper function SETTING_MSG(setting) to be used from TestSettings.test_set_output_path(). by Johnny Chen · 14 years ago
  99. 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
  100. ce68146 Modify the test driver and lldbtest.TestBase so that the dumping of session info by Johnny Chen · 14 years ago