- 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
-
Johnny Chen authored
1. 'help image du sym' is ambiguous. 2. 'help image du line' is not ambiguous. llvm-svn: 120587
-
Johnny Chen authored
llvm-svn: 120515
-
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
-
-
Johnny Chen authored
llvm-svn: 120479
-
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
-
Johnny Chen authored
llvm-svn: 120355
-
Johnny Chen authored
llvm-svn: 120352
-
- Nov 29, 2010
-
-
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 19, 2010
-
-
Johnny Chen authored
llvm-svn: 119836
-
Johnny Chen authored
Change SBFrame::LookupVarInScope() to also work with "global" scope in addition to "local" and "parameter" scope. llvm-svn: 119811
-
Johnny Chen authored
llvm-svn: 119758
-
- Nov 18, 2010
-
-
Johnny Chen authored
llvm-svn: 119734
-
Johnny Chen authored
llvm-svn: 119732
-
- Nov 17, 2010
-
-
Jim Ingham authored
with the Interrupted bit set. Process::HandlePrivateEvent ignores Interrupted events. DoHalt is changed to ensure that the stop even is processed, and an event with the Interrupted event is posted. Finally ClangFunction is rationalized to use this facility so the that Halt is handled more deterministically. llvm-svn: 119453
-
Johnny Chen authored
output from clang and llvm-gcc compiled program; both generate the correct debug info with respect to the typedef scoped inside a namespace. Add a TestBase.getCompiler(self) method which returns the compiler in effect the test suite is now running with. Subclasses (like TestNamespace) can use it to distinguish among different compilers. llvm-svn: 119445
-
- Nov 16, 2010
-
-
Johnny Chen authored
This is not to be used during normal test suite run, but to be used to stress test specific test sequences repeatedly. Example: ./dotest.py -# 3 -v breakpoint_conditions will repeat the test suite 3 times for tests under the breakpoint_conditions directory. llvm-svn: 119399
-
Johnny Chen authored
llvm-svn: 119353
-
- Nov 15, 2010
-
-
rdar://problem/8668740Johnny Chen authored
'frame variable' output for namespace variables look wrong llvm-svn: 119172
-
Johnny Chen authored
llvm-svn: 119171
-
Johnny Chen authored
plus expression command using fully qualified names. llvm-svn: 119168
-
Johnny Chen authored
Add test sequences for 'frame variable' address-of operator and 'frame variable' fully-qualified name variable. Also add some comments. llvm-svn: 119165
-
Johnny Chen authored
inside a ctor. llvm-svn: 119162
-
Johnny Chen authored
as both rdar://problem/8659840 and rdar://problem/8660275 have been fixed. llvm-svn: 119160
-
Greg Clayton authored
expression logging. Added some properties to the "objc" test. The expression parser can currently display properties that are backed by the default functions "expr myStr.string" will work. But it won't currently work when the property is backed by a different function such as "expr myStr.date". llvm-svn: 119103
-
Greg Clayton authored
llvm-svn: 119091
-
- Nov 12, 2010
-
-
Johnny Chen authored
they are displayed correctly. llvm-svn: 118930
-
Johnny Chen authored
llvm-svn: 118869
-
Johnny Chen authored
They should not fail. llvm-svn: 118868
-
Johnny Chen authored
exercise 'expression' command on namespaced variables. llvm-svn: 118867
-
Johnny Chen authored
rdar://problem/8659840 test failure: ./dotest.py -v -t -f NamespaceTestCase.test_with_dwarf_and_run_command llvm-svn: 118861
-
Johnny Chen authored
the architecture and compiler specs. llvm-svn: 118860
-