hanchenye-llvm-project/lldb/test/forward
Caroline Tice 79042b3e93 Change "breakpoint list" command to default to brief output rather than full output.
Modify test cases in test suite to either expect brief output or to pass -f for full
output as appropriate.

llvm-svn: 124905
2011-02-04 22:59:41 +00:00
..
Makefile
README.txt
TestForwardDeclaration.py Change "breakpoint list" command to default to brief output rather than full output. 2011-02-04 22:59:41 +00:00
foo.c
foo.h
main.c

README.txt

This example has a function call in foo.c named "foo" that takes a forward
declaration to "struct bar" and uses it as a pointer argument. In main.c
we have a real declaration for "struct bar". We want to be able to find the
real definition of "struct bar" when we are stopped in foo in foo.c such that
when we stop in "foo" we see the contents of the "bar_ptr".