diff --git a/tests/manual/gdbdebugger/simple/app.cpp b/tests/manual/gdbdebugger/simple/app.cpp index cebc364c2184e2ce4dad3ad4f5dd34da1629c108..527329a5d87d4c3559d76a178c8d52ddce40a2f9 100644 --- a/tests/manual/gdbdebugger/simple/app.cpp +++ b/tests/manual/gdbdebugger/simple/app.cpp @@ -1109,6 +1109,13 @@ int main(int argc, char *argv[]) QStringList list; list << "aaa" << "bbb" << "cc"; + QList<const char *> list2; + list2 << "foo"; + list2 << "bar"; + list2 << 0; + list2 << "baz"; + list2 << 0; + testQStandardItemModel(); testQImage(); testNoArgumentName(1, 2, 3);