debugger: add missing bridge.py

Change-Id: I7e236964007462ca203b898db06e15f77857916b
Reviewed-on: http://codereview.qt.nokia.com/1036
Reviewed-by: hjk <qthjk@ovi.com>
This commit is contained in:
hjk
2011-06-29 11:48:12 +02:00
committed by hjk
parent 36a3028b9d
commit 538b09efc8
2 changed files with 265 additions and 0 deletions

View File

@@ -2935,8 +2935,34 @@ namespace qc41700 {
} // namespace qc41700
namespace cp42895 {
// http://codepaster.europe.nokia.com/?id=42895
void g(int c, int d)
{
qDebug() << c << d;
// <== break here
// Check there are frames for g and f in the stack view.
dummyStatement(&c, &d);
}
void f(int a, int b)
{
g(a, b);
}
void test42895()
{
f(3, 4);
}
} // namespace cp
int main(int argc, char *argv[])
{
cp42895::test42895();
bug5046::test5046();
bug4904::test4904();
qc41700::test41700();