- c391239 Modify docstring. by Johnny Chen · 14 years ago
- ab6378a Add a TraceOn(self) method to the base test class, which returns True if we are by Johnny Chen · 14 years ago
- 44dc9d3 Add a test script for exercising the "taregt create", "target list", and "target select" commands. by Johnny Chen · 14 years ago
- 33cd0c3 Forgot to check in this change with http://llvm.org/viewvc/llvm-project?view=rev&revision=129542. by Johnny Chen · 14 years ago
- 0bfa859 Turns out that the test failure wrt: by Johnny Chen · 14 years ago
- 7304147 Add a test directory stop-hook to test the newly added "target stop-hook" command. by Johnny Chen · 14 years ago
- 4f52c40 Discover the 'lldb' executable in the setUp() hook of the base test class. by Johnny Chen · 14 years ago
- c6d591b Some cleanup to plugins/darwin.py after the recent additions of '-A arch' and '-C compiler' by Johnny Chen · 14 years ago
- 5ec14f8 Deprecated old forms of SBTarget::Launch. There is not just one and no by Greg Clayton · 14 years ago
- 24af296 Fix a typo in the comment. by Johnny Chen · 14 years ago
- dcb3722 The test suite was unnecessarily doing a time.sleep() after performing the by Johnny Chen · 14 years ago
- 0ace30f Add a test case for the SBFrame APIs. In particular, it uses the frame API to by Johnny Chen · 14 years ago
- ec88274 Execute the test case teardown hooks in a LIFO (last in, first out) order. by Johnny Chen · 14 years ago
- 7a4512b Add TestBreakpointIgnoreCount.py to exercise the breakpoint ignore count features, by Johnny Chen · 14 years ago
- 3f1696c Make sure that @python_api_test is only used to decorate a test method, not the by Johnny Chen · 14 years ago
- 3ebdacc Add a '+a' command line option to the test driver to run only the Python API tests. by Johnny Chen · 14 years ago
- 4f93bf1 Add an infrastructure to mark the Python APIs only test using a decorator. by Johnny Chen · 14 years ago
- 6f7abb0 Add a test/source-manager directory for testing lldb core component SourceManager. by Johnny Chen · 14 years ago
- 8fd886c For SBTarget.Launch()/LaunchProcess(), there's no need to pass an empty string by Johnny Chen · 14 years ago
- 46ffd86 Fail fast by raising an exception if the 'string_to_match' cannot be located by Johnny Chen · 14 years ago
- 1ad9e99 Forgot to also check in this file along with the TestBreakpointConditions.py change. by Johnny Chen · 14 years ago
- 0eaaf32 Add a mechanism of overwriting the default 1.0 second wait time between test by Johnny Chen · 14 years ago
- ecfc3cf TestBase.setUp() needs to make sure lldb.blacklist is not None by Johnny Chen · 14 years ago
- 82e6b1e Add a '-b blacklistFile' option to the test driver to take a file specifying the by Johnny Chen · 14 years ago
- 24f43be Add an expect() statement within breakpoint_conditions() method which tests that by Johnny Chen · 14 years ago
- 458a67e Change the variable TestBase.timeWait to the more descriptive timeWaitNextLaunch. by Johnny Chen · 14 years ago
- 6b22756 Make the string matching for 'frame variable' more stringent with respect to by Johnny Chen · 14 years ago
- b527f26 The session log entry containing the command to rerun the same test now also includes by Johnny Chen · 14 years ago
- e8587d0 Some rewordings of the assert messages for process stopped due to breakpoint. by Johnny Chen · 14 years ago
- c82ac76 Add the actual stop reason to an assert message for bitfields_variable_python() by Johnny Chen · 14 years ago
- 55c1bfd When dumping the session log for a failed/errored test, also emit the command to by Johnny Chen · 14 years ago
- 05efcf78 Distinguish between the assert messages for runCmd and expect. The former now by Johnny Chen · 14 years ago
- 51d6b1c Make the type of session log part of the filename itself. It allows for easier by Johnny Chen · 14 years ago
- e625092 Fix comments. by Johnny Chen · 14 years ago
- 2c8d159 Add a test for Python API SBValue.GetValueType() inside TestArrayTypes.py for a by Johnny Chen · 14 years ago
- dd2bb2c Now that the test suite has very few expected failures remaining (2), it is a good by Johnny Chen · 14 years ago
- ddeba74 Add more comment for dumpSessionInfo(self) method. by Johnny Chen · 14 years ago
- 2986764 Replace the two call sites of inspect.getsource(obj) with a utility function by Johnny Chen · 14 years ago
- 12fc1dc Python API changes: SBValue.IsPtrType() -> SBValue.IsPointerType(). by Johnny Chen · 14 years ago
- 60881f6 Add comment on passing the assert message to self.runCmd(). by Johnny Chen · 14 years ago
- 05dd893 If TestBase.expect() is passed an assert message, pass it along when delegating to TestBase.runCmd() by Johnny Chen · 14 years ago
- 607b7a1 Add more docstring for the lldbtest.TestBase class. by Johnny Chen · 14 years ago
- 0601a29 Add test case for using SBBreakpointLocation to set break condition. by Johnny Chen · 14 years ago
- 125fc2b Add an option '-s session-dir-name' to overwrite the default timestamp-named by Johnny Chen · 14 years ago
- f6bdb19 Make the breakpoint condition test more robust with regard to checking the correct by Johnny Chen · 14 years ago
- 73a8710 Clean up the teardown logic to make it more robust and to record the additions and by Johnny Chen · 14 years ago
- 705737b Restoring the original setting should be done more robustly by adding a hook function by Johnny Chen · 14 years ago
- eb4f7a8 Add Python doc string for setTearDownCleanup() method. by Johnny Chen · 14 years ago
- db9cbe9 Add a little helper function SETTING_MSG(setting) to be used from TestSettings.test_set_output_path(). by Johnny Chen · 14 years ago
- 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
- ce68146 Modify the test driver and lldbtest.TestBase so that the dumping of session info by Johnny Chen · 14 years ago
- 5486d07 Missed this spot where module.cleanup() can be passed a test instance to by Johnny Chen · 14 years ago
- 1b7d629 Some re-achitecturing of the plugins interface. The caller is now required to by Johnny Chen · 14 years ago
- 31cf8e2 Add a test case for exercising breakpoint conditions using the lldb command: by Johnny Chen · 14 years ago
- c55dace Add a const string for assert message. Remove extra printing of newlines from by Johnny Chen · 14 years ago
- 314a145 Add more comments. by Johnny Chen · 14 years ago
- 7c565c8 Be more specific about cases whenthe runCmd() check flag is False, meaning there by Johnny Chen · 14 years ago
- 595c9d7 Simply use the TestBase.markFailure() callback method to set the __failed__ flag. by Johnny Chen · 14 years ago
- 84a6d6f This is an initial version of test driver enhanceent to be able to dump the by Johnny Chen · 14 years ago
- d7a4eb0 Add an initial version of test that exercise the lldb commands: 'process signal' by Johnny Chen · 14 years ago
- 0659e34 Avoid using hardcoded line number to break on. Use the line_number() utility by Johnny Chen · 14 years ago
- 1490600 Add a utility function to lldbtest.py to return the line number of a matched string by Johnny Chen · 14 years ago
- 548aefd Added the capability for the test driver to relocate the tests and the intermediate by Johnny Chen · 14 years ago
- 8e46859 o TestStdCXXDisassembly.py: by Johnny Chen · 14 years ago
- be683bc Move the enum to string utility functions from lldbtest.py to lldbuti.py and by Johnny Chen · 14 years ago
- 8e4f356 Clean up the StateType and StopReason enums now that they reside in the lldb module. by Johnny Chen · 14 years ago
- e47649c o SBtarget.cpp/.h: by Johnny Chen · 14 years ago
- 5349ee2 Make the test module with unique name instead of just the generic name TestDisassembly. by Johnny Chen · 14 years ago
- 4199819 o Added a new feature to the test framework to skip long running tests conditionally. by Johnny Chen · 14 years ago
- 72afa8d These prints should go to stderr as well. Plus add a global assert string. by Johnny Chen · 14 years ago
- 091bb1d Added a generic_type_tester() to the TestBasicTypes class to be used for by Johnny Chen · 14 years ago
- 0b3ee55 Checked in an initial template for the types directory. Right now, it doesn't by Johnny Chen · 14 years ago
- 585ff0e Trivial change of a trace output string. by Johnny Chen · 14 years ago
- 8e06de9 Added a subtest to exercise the capability of lldb Python objects to print by Johnny Chen · 14 years ago
- 93ae604 Wrapped the subclass-specific cleanup call within a try:except: clause. by Johnny Chen · 14 years ago
- 2d89975 Added a more complex test case of breakpoint commands, which executes a sequence by Johnny Chen · 14 years ago
- ee975b8 Fixed a typo and supplied a more appropriate assert message. by Johnny Chen · 14 years ago
- 9792f8e Added test cases to FoundationTestCase to exercise lookup of objc data types and by Johnny Chen · 14 years ago
- 517c705 Added a test case for the settings command which sets process.output-path and by Johnny Chen · 14 years ago
- d3521cc Provided a mechanism for the test class to cleanup after itself once it's done. by Johnny Chen · 14 years ago
- 5f3b98c Changed to a more informative message. by Johnny Chen · 14 years ago
- 0c30ad8 We believed the intermittent process launch failure while running the test suite by Johnny Chen · 14 years ago
- c181067 Added two test cases to exercise 'expr this->m_c_int' with @expectedFailure by Johnny Chen · 14 years ago
- 493cad4 More appropriate headings for the traceoutput: stdout & stderr. by Johnny Chen · 14 years ago
- fde69bc Removed the expectedFailure decorator from test_with_dwarf_and_run_command() test case by Johnny Chen · 14 years ago
- 4890405 Extend the build mechanism to allow for specifying the compiler used to build by Johnny Chen · 14 years ago
- c6fe11f The output for term-width setting has single quotes around the (int) value. by Johnny Chen · 14 years ago
- ff4e1d8 Marked test_process_launch_for_universal() test case as requiring 'darwin' and 'i386' by Johnny Chen · 14 years ago
- c5b15db Fixed an lldb infrastructure bug, where the debugger should reaaly update its by Johnny Chen · 14 years ago
- 59ea45f Added comments regarding the two mechanisms of process cleanup to lldbtest.py. by Johnny Chen · 14 years ago
- 72a1434 Moved the process cleanup of Script-Bridge-based APIs into TestBase.tearDown() by Johnny Chen · 14 years ago
- c202b49 Put the little dances done after SBTarget.LaunchProcess() into the base class. by Johnny Chen · 14 years ago
- 21f3341 Avoid killing the inferior process twice by passing a setCookie=False keyword by Johnny Chen · 14 years ago
- 9de4ede Changed the buildDsym()/buildDwarf() TestBase methods to use a plugin framework by Johnny Chen · 14 years ago
- 32caf6a Added doc strings to the array_types test cases. And terminate the current by Johnny Chen · 14 years ago
- 1acaf63 Converted TestArrayTypes.py to Dsym/Dwarf combination, and added verbose output by Johnny Chen · 14 years ago
- eef7a86 Added buildDsym() and buildDwarf() methods to lldbtest.TestBase class, and call by Johnny Chen · 14 years ago
- a1cc883 Added a system() method to the TestBase class of lldbtest.py, which is actually by Johnny Chen · 14 years ago
- 1bb9f9a Added a test case test_breakpoint_creation_by_filespec_python() which creates a by Johnny Chen · 14 years ago
- 6264bc6 Added TestHelloWorld.py which exercises the Python APIs for target, breakpoint, by Johnny Chen · 14 years ago