- Dec 01, 2010
-
-
Johnny Chen authored
test classes or test cases to be excludued from the test suite. Check in an example blacklist file: blacklist.py: """ 'blacklist' is a Python dictionary, it stores the mapping of a string describing either a testclass or a testcase, i.e, testclass.testmethod, to the reason (a string) it is blacklisted. Following is an example which states that test class IntegerTypesExprTestCase should be skipped because 'This test class crashed' and the test case FoundationTestCase.test_data_type_and_expr_with_dsym should be skipped because it is 'Temporarily disabled'. blacklist = {'IntegerTypesExprTestCase': 'This test class crashed', 'FoundationTestCase.test_data_type_and_expr_with_dsym': 'Temporarily disabled' } """ blacklist = {} An example of invoking the test driver and specifying a blacklist file: ./dotest.py -b blacklist.py -v types This runs the tests under 'types' directory but excludes the tests specified in balcklist.py. llvm-svn: 120620
-
Greg Clayton authored
llvm-svn: 120618
-
Sean Callanan authored
in C++ methods. There were two fixes involved: - For an object whose contents are not known, the expression should be treated as a non-member, and "this" should have no meaning. - For a const object, the method should be declared const as well. llvm-svn: 120606
-
Johnny Chen authored
1. 'help image du sym' is ambiguous. 2. 'help image du line' is not ambiguous. llvm-svn: 120587
-
Sean Callanan authored
persistent variables even after the parser has finished running. llvm-svn: 120521
-
Sean Callanan authored
llvm-svn: 120520
-
Johnny Chen authored
exactly-matched sub_cmd to the passed in 'matches' string list. llvm-svn: 120516
-
Johnny Chen authored
llvm-svn: 120515
-
Jim Ingham authored
GetCommandObject returns no matches in the match array when there is only one match. That's odd, but I don't want to change that right now, just cope with it where I'm doing the command matching. llvm-svn: 120511
-
Johnny Chen authored
rdar://problem/8689814 test failure: test/macosx/universal (the i386 slice does not break?) llvm-svn: 120505
-
Johnny Chen authored
Possibly due to http://llvm.org/viewvc/llvm-project?rev=120484&view=rev. llvm-svn: 120503
-
- Nov 30, 2010
-
-
Jim Ingham authored
llvm-svn: 120484
-
Johnny Chen authored
llvm-svn: 120479
-
Sean Callanan authored
copied by the copy constructor for ClangExpressionVariable. This meant that a NULL m_register_info wouldn't be copied, and instead the field was uninitialized, potentially confusing the materializer. llvm-svn: 120472
-
Johnny Chen authored
rdar://problem/8710994 Assertion failed: (reg_info) GDBRemoteRegisterContext.cpp, line 199 llvm-svn: 120462
-
Johnny Chen authored
rdar://problem/8710994 Assertion failed: (reg_info) GDBRemoteRegisterContext.cpp, line 199 llvm-svn: 120434
-
Johnny Chen authored
rdar://problem/8710994 Assertion failed: (reg_info) GDBRemoteRegisterContext.cpp, line 199 llvm-svn: 120432
-
Johnny Chen authored
Application Specific Information: HandleCommand(command = "expression self->str") radar:8711052 llvm-svn: 120431
-
Johnny Chen authored
rdar://problem/8710994 Assertion failed: (reg_info) GDBRemoteRegisterContext.cpp, line 199 llvm-svn: 120430
-
Jim Ingham authored
Moved the code in ClangUserExpression that set up & ran the thread plan with timeouts, and restarting with all threads into a utility function in Process. This required a bunch of renaming. Added a ThreadPlanCallUserExpression that differs from ThreadPlanCallFunction in that it holds onto a shared pointer to its ClangUserExpression so that can't go away before the thread plan is done using it. Fixed the stop message when you hit a breakpoint while running a user expression so it is more obvious what has happened. llvm-svn: 120386
-
Sean Callanan authored
using special $-variables from expressions. (lldb) expr $rip These variables are available for reading and writing. llvm-svn: 120367
-
Johnny Chen authored
llvm-svn: 120355
-
Johnny Chen authored
llvm-svn: 120352
-
- Nov 29, 2010
-
-
Jason Molenda authored
llvm-svn: 120322
-
Johnny Chen authored
the process status is indeed 'stopped' before invoking 'frame variable -t val' command to inspect the frame variable. When I run the test suite, it sometimes emits an output like: runCmd: frame variable -t val runCmd failed! error: you must be stopped in a valid stack frame to view frame variables. The expect() statement inserted is to make sure that the process is stopped and we have a valid frame. llvm-svn: 120318
-
Johnny Chen authored
Increase the delta between successive test cases, enabled with the '-w' option to the test driver, from 0.5 to 1.0 second, to arrive at a cleaner state before the next test case. llvm-svn: 120315
-
Johnny Chen authored
llvm-svn: 120295
-
Johnny Chen authored
ignore and not enforce the signleton pattern for the LLDBTestResult class. llvm-svn: 120294
-
- Nov 20, 2010
-
-
Greg Clayton authored
When we resolve a forward declaration type, be sure to put it into the m_die_to_type map so we don't assert later when someone tries to resolve the type. llvm-svn: 119910
-
Sean Callanan authored
llvm-svn: 119890
-
Sean Callanan authored
of failures in the AST importer. Also ensured that a variable will not be blindly added if GetVariableValue() returns an error. llvm-svn: 119889
-
Sean Callanan authored
llvm-svn: 119888
-
Jason Molenda authored
RegisterContext* - normally this is retrieved from the ExecutionContext's StackFrame but when we need to evaluate an expression while creating the stack frame list this can be a little tricky. Add DW_OP_deref_size, needed for the _sigtramp FDE expression. Add support for processing DWARF expressions in RegisterContextLLDB. Update callers to DWARFExpression::Evaluate. llvm-svn: 119885
-
Greg Clayton authored
to hang around and take a ton of CPU time. Caroline will fix this when she gets back from vacation. llvm-svn: 119877
-
- Nov 19, 2010
-
-
Greg Clayton authored
declarations" fix. llvm-svn: 119847
-
Caroline Tice authored
and end-of-file (often control-d). llvm-svn: 119837
-
Johnny Chen authored
llvm-svn: 119836
-
Sean Callanan authored
perform recursive type lookups, because these are not required for full type fidelity. We also make the SelectorTable last for the full lifetime of the Clang compiler; this was the source of many bugs. llvm-svn: 119835
-
Johnny Chen authored
Change SBFrame::LookupVarInScope() to also work with "global" scope in addition to "local" and "parameter" scope. llvm-svn: 119811
-
Greg Clayton authored
llvm-svn: 119786
-