2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2011-02-18 14:48:16 +01:00
|
|
|
**
|
2013-01-28 17:12:19 +01:00
|
|
|
** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
|
2012-10-02 09:12:39 +02:00
|
|
|
** Contact: http://www.qt-project.org/legal
|
2011-02-18 14:48:16 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2011-02-18 14:48:16 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** Commercial License Usage
|
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
|
** a written agreement between you and Digia. For licensing terms and
|
|
|
|
|
** conditions see http://qt.digia.com/licensing. For further information
|
|
|
|
|
** use the contact form at http://qt.digia.com/contact-us.
|
2011-02-18 14:48:16 +01:00
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
2012-10-02 09:12:39 +02:00
|
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
|
|
|
|
** General Public License version 2.1 as published by the Free Software
|
|
|
|
|
** Foundation and appearing in the file LICENSE.LGPL included in the
|
|
|
|
|
** packaging of this file. Please review the following information to
|
|
|
|
|
** ensure the GNU Lesser General Public License version 2.1 requirements
|
|
|
|
|
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
|
|
|
|
**
|
|
|
|
|
** In addition, as a special exception, Digia gives you certain additional
|
|
|
|
|
** rights. These rights are described in the Digia Qt LGPL Exception
|
2011-02-18 14:48:16 +01:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2009-11-24 11:05:29 +01:00
|
|
|
|
2013-01-24 10:38:40 +01:00
|
|
|
#include "debuggerprotocol.h"
|
2009-11-05 10:05:46 +01:00
|
|
|
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QtTest>
|
2009-10-13 14:42:18 +02:00
|
|
|
|
2013-02-13 16:12:12 +01:00
|
|
|
//TESTED_COMPONENT=src/plugins/debugger/gdb
|
2009-10-13 14:42:18 +02:00
|
|
|
|
2013-02-13 16:12:12 +01:00
|
|
|
class tst_gdb : public QObject
|
2009-10-13 14:42:18 +02:00
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
2013-02-13 16:12:12 +01:00
|
|
|
tst_gdb() {}
|
2009-10-14 09:41:14 +02:00
|
|
|
|
|
|
|
|
private slots:
|
2013-02-13 16:12:12 +01:00
|
|
|
void version();
|
|
|
|
|
void version_data();
|
2009-12-02 10:43:55 +01:00
|
|
|
|
2013-02-13 16:12:12 +01:00
|
|
|
void niceType();
|
|
|
|
|
void niceType_data();
|
2009-10-13 14:42:18 +02:00
|
|
|
};
|
|
|
|
|
|
2013-02-13 16:12:12 +01:00
|
|
|
void tst_gdb::version()
|
|
|
|
|
{
|
|
|
|
|
QFETCH(QString, msg);
|
|
|
|
|
QFETCH(int, gdbVersion);
|
|
|
|
|
QFETCH(int, gdbBuildVersion);
|
|
|
|
|
QFETCH(bool, isMacGdb);
|
|
|
|
|
QFETCH(bool, isQnxGdb);
|
|
|
|
|
int v = 0, bv = 0;
|
|
|
|
|
bool mac = true;
|
|
|
|
|
bool qnx = true;
|
|
|
|
|
Debugger::Internal::extractGdbVersion(msg, &v, &bv, &mac, &qnx);
|
|
|
|
|
//qDebug() << msg << " -> " << v << bv << mac << qnx;
|
|
|
|
|
QCOMPARE(v, gdbVersion);
|
|
|
|
|
QCOMPARE(bv, gdbBuildVersion);
|
|
|
|
|
QCOMPARE(mac, isMacGdb);
|
|
|
|
|
QCOMPARE(qnx, isQnxGdb);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void tst_gdb::version_data()
|
|
|
|
|
{
|
|
|
|
|
QTest::addColumn<QString>("msg");
|
|
|
|
|
QTest::addColumn<int>("gdbVersion");
|
|
|
|
|
QTest::addColumn<int>("gdbBuildVersion");
|
|
|
|
|
QTest::addColumn<bool>("isMacGdb");
|
|
|
|
|
QTest::addColumn<bool>("isQnxGdb");
|
|
|
|
|
|
|
|
|
|
QTest::newRow("Debian")
|
|
|
|
|
<< "GNU gdb (GDB) 7.0.1-debian"
|
|
|
|
|
<< 70001 << 0 << false << false;
|
|
|
|
|
|
|
|
|
|
QTest::newRow("CVS 7.0.90")
|
|
|
|
|
<< "GNU gdb (GDB) 7.0.90.20100226-cvs"
|
|
|
|
|
<< 70090 << 20100226 << false << false;
|
|
|
|
|
|
|
|
|
|
QTest::newRow("Ubuntu Lucid")
|
|
|
|
|
<< "GNU gdb (GDB) 7.1-ubuntu"
|
|
|
|
|
<< 70100 << 0 << false << false;
|
|
|
|
|
|
|
|
|
|
QTest::newRow("Fedora 13")
|
|
|
|
|
<< "GNU gdb (GDB) Fedora (7.1-22.fc13)"
|
|
|
|
|
<< 70100 << 22 << false << false;
|
|
|
|
|
|
|
|
|
|
QTest::newRow("Gentoo")
|
|
|
|
|
<< "GNU gdb (Gentoo 7.1 p1) 7.1"
|
|
|
|
|
<< 70100 << 1 << false << false;
|
|
|
|
|
|
|
|
|
|
QTest::newRow("Fedora EL5")
|
|
|
|
|
<< "GNU gdb Fedora (6.8-37.el5)"
|
|
|
|
|
<< 60800 << 37 << false << false;
|
|
|
|
|
|
|
|
|
|
QTest::newRow("SUSE")
|
|
|
|
|
<< "GNU gdb (GDB) SUSE (6.8.91.20090930-2.4)"
|
|
|
|
|
<< 60891 << 20090930 << false << false;
|
|
|
|
|
|
|
|
|
|
QTest::newRow("Apple")
|
|
|
|
|
<< "GNU gdb 6.3.50-20050815 (Apple version gdb-1461.2)"
|
|
|
|
|
<< 60350 << 1461 << true << false;
|
|
|
|
|
|
|
|
|
|
QTest::newRow("Apple")
|
|
|
|
|
<< "GNU gdb 6.3.50-20050815 (Apple version gdb-960)"
|
|
|
|
|
<< 60350 << 960 << true << false;
|
|
|
|
|
|
|
|
|
|
QTest::newRow("QNX")
|
|
|
|
|
<< "GNU gdb (GDB) 7.3 qnx (rev. 613)"
|
|
|
|
|
<< 70300 << 613 << false << true;
|
2013-06-04 08:44:10 +02:00
|
|
|
|
|
|
|
|
QTest::newRow("rubenvb")
|
|
|
|
|
<< "GNU gdb (rubenvb-4.7.2-release) 7.5.50.20120920-cvs"
|
|
|
|
|
<< 70550 << 20120920 << false << false;
|
2013-02-13 16:12:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static QString chopConst(QString type)
|
|
|
|
|
{
|
|
|
|
|
while (1) {
|
|
|
|
|
if (type.startsWith("const"))
|
|
|
|
|
type = type.mid(5);
|
|
|
|
|
else if (type.startsWith(' '))
|
|
|
|
|
type = type.mid(1);
|
|
|
|
|
else if (type.endsWith("const"))
|
|
|
|
|
type.chop(5);
|
|
|
|
|
else if (type.endsWith(' '))
|
|
|
|
|
type.chop(1);
|
|
|
|
|
else
|
|
|
|
|
break;
|
2009-10-21 18:21:20 +02:00
|
|
|
}
|
2013-02-13 16:12:12 +01:00
|
|
|
return type;
|
2009-10-21 18:21:20 +02:00
|
|
|
}
|
|
|
|
|
|
2013-02-13 16:12:12 +01:00
|
|
|
QString niceType(QString type)
|
2009-10-21 18:21:20 +02:00
|
|
|
{
|
2013-02-13 16:12:12 +01:00
|
|
|
type.replace('*', '@');
|
2011-05-31 10:51:21 +02:00
|
|
|
|
2013-02-13 16:12:12 +01:00
|
|
|
for (int i = 0; i < 10; ++i) {
|
|
|
|
|
int start = type.indexOf("std::allocator<");
|
|
|
|
|
if (start == -1)
|
2009-12-07 09:14:35 +01:00
|
|
|
break;
|
2013-02-13 16:12:12 +01:00
|
|
|
// search for matching '>'
|
|
|
|
|
int pos;
|
|
|
|
|
int level = 0;
|
|
|
|
|
for (pos = start + 12; pos < type.size(); ++pos) {
|
|
|
|
|
int c = type.at(pos).unicode();
|
|
|
|
|
if (c == '<') {
|
|
|
|
|
++level;
|
|
|
|
|
} else if (c == '>') {
|
|
|
|
|
--level;
|
|
|
|
|
if (level == 0)
|
|
|
|
|
break;
|
2009-10-21 18:21:20 +02:00
|
|
|
}
|
|
|
|
|
}
|
2013-02-13 16:12:12 +01:00
|
|
|
QString alloc = type.mid(start, pos + 1 - start).trimmed();
|
|
|
|
|
QString inner = alloc.mid(15, alloc.size() - 16).trimmed();
|
|
|
|
|
//qDebug() << "MATCH: " << pos << alloc << inner;
|
|
|
|
|
|
|
|
|
|
if (inner == QLatin1String("char"))
|
|
|
|
|
// std::string
|
|
|
|
|
type.replace(QLatin1String("basic_string<char, std::char_traits<char>, "
|
|
|
|
|
"std::allocator<char> >"), QLatin1String("string"));
|
|
|
|
|
else if (inner == QLatin1String("wchar_t"))
|
|
|
|
|
// std::wstring
|
|
|
|
|
type.replace(QLatin1String("basic_string<wchar_t, std::char_traits<wchar_t>, "
|
|
|
|
|
"std::allocator<wchar_t> >"), QLatin1String("wstring"));
|
|
|
|
|
|
|
|
|
|
// std::vector, std::deque, std::list
|
|
|
|
|
QRegExp re1(QString("(vector|list|deque)<%1, %2\\s*>").arg(inner, alloc));
|
|
|
|
|
if (re1.indexIn(type) != -1)
|
|
|
|
|
type.replace(re1.cap(0), QString("%1<%2>").arg(re1.cap(1), inner));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// std::stack
|
|
|
|
|
QRegExp re6(QString("stack<%1, std::deque<%2> >").arg(inner, inner));
|
|
|
|
|
re6.setMinimal(true);
|
|
|
|
|
if (re6.indexIn(type) != -1)
|
|
|
|
|
type.replace(re6.cap(0), QString("stack<%1>").arg(inner));
|
|
|
|
|
|
|
|
|
|
// std::set
|
|
|
|
|
QRegExp re4(QString("set<%1, std::less<%2>, %3\\s*>").arg(inner, inner, alloc));
|
|
|
|
|
re4.setMinimal(true);
|
|
|
|
|
if (re4.indexIn(type) != -1)
|
|
|
|
|
type.replace(re4.cap(0), QString("set<%1>").arg(inner));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// std::map
|
|
|
|
|
if (inner.startsWith("std::pair<")) {
|
|
|
|
|
// search for outermost ','
|
|
|
|
|
int pos;
|
|
|
|
|
int level = 0;
|
|
|
|
|
for (pos = 10; pos < inner.size(); ++pos) {
|
|
|
|
|
int c = inner.at(pos).unicode();
|
|
|
|
|
if (c == '<')
|
|
|
|
|
++level;
|
|
|
|
|
else if (c == '>')
|
|
|
|
|
--level;
|
|
|
|
|
else if (c == ',' && level == 0)
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
QString ckey = inner.mid(10, pos - 10);
|
|
|
|
|
QString key = chopConst(ckey);
|
|
|
|
|
QString value = inner.mid(pos + 2, inner.size() - 3 - pos);
|
|
|
|
|
|
|
|
|
|
QRegExp re5(QString("map<%1, %2, std::less<%3>, %4\\s*>")
|
|
|
|
|
.arg(key, value, key, alloc));
|
|
|
|
|
re5.setMinimal(true);
|
|
|
|
|
if (re5.indexIn(type) != -1)
|
|
|
|
|
type.replace(re5.cap(0), QString("map<%1, %2>").arg(key, value));
|
|
|
|
|
else {
|
|
|
|
|
QRegExp re7(QString("map<const %1, %2, std::less<const %3>, %4\\s*>")
|
|
|
|
|
.arg(key, value, key, alloc));
|
|
|
|
|
re7.setMinimal(true);
|
|
|
|
|
if (re7.indexIn(type) != -1)
|
|
|
|
|
type.replace(re7.cap(0), QString("map<const %1, %2>").arg(key, value));
|
2009-10-21 18:21:20 +02:00
|
|
|
}
|
|
|
|
|
}
|
2009-11-23 13:32:32 +01:00
|
|
|
}
|
2013-02-13 16:12:12 +01:00
|
|
|
type.replace('@', '*');
|
|
|
|
|
type.replace(QLatin1String(" >"), QString(QLatin1Char('>')));
|
|
|
|
|
return type;
|
2009-11-23 13:32:32 +01:00
|
|
|
}
|
|
|
|
|
|
2013-02-13 16:12:12 +01:00
|
|
|
void tst_gdb::niceType()
|
2009-10-13 14:42:18 +02:00
|
|
|
{
|
2013-02-13 16:12:12 +01:00
|
|
|
// cf. watchutils.cpp
|
|
|
|
|
QFETCH(QString, input);
|
|
|
|
|
QFETCH(QString, simplified);
|
|
|
|
|
QCOMPARE(::niceType(input), simplified);
|
2009-11-23 13:32:32 +01:00
|
|
|
}
|
|
|
|
|
|
2013-02-13 16:12:12 +01:00
|
|
|
void tst_gdb::niceType_data()
|
2009-11-23 13:32:32 +01:00
|
|
|
{
|
2013-02-13 16:12:12 +01:00
|
|
|
QTest::addColumn<QString>("input");
|
|
|
|
|
QTest::addColumn<QString>("simplified");
|
2009-10-13 14:42:18 +02:00
|
|
|
|
2013-02-13 16:12:12 +01:00
|
|
|
QTest::newRow("list")
|
|
|
|
|
<< "std::list<int, std::allocator<int> >"
|
|
|
|
|
<< "std::list<int>";
|
2009-11-23 13:32:32 +01:00
|
|
|
|
2013-02-13 16:12:12 +01:00
|
|
|
QTest::newRow("combined")
|
|
|
|
|
<< "std::vector<std::list<int, std::allocator<int> >*, "
|
|
|
|
|
"std::allocator<std::list<int, std::allocator<int> >*> >"
|
|
|
|
|
<< "std::vector<std::list<int>*>";
|
2009-10-13 14:42:18 +02:00
|
|
|
|
2013-02-13 16:12:12 +01:00
|
|
|
QTest::newRow("stack")
|
|
|
|
|
<< "std::stack<int, std::deque<int, std::allocator<int> > >"
|
|
|
|
|
<< "std::stack<int>";
|
2009-11-24 16:52:52 +01:00
|
|
|
|
2013-02-13 16:12:12 +01:00
|
|
|
QTest::newRow("map")
|
|
|
|
|
<< "std::map<myns::QString, Foo, std::less<myns::QString>, "
|
|
|
|
|
"std::allocator<std::pair<const myns::QString, Foo> > >"
|
|
|
|
|
<< "std::map<myns::QString, Foo>";
|
2009-11-24 16:52:52 +01:00
|
|
|
|
2013-02-13 16:12:12 +01:00
|
|
|
QTest::newRow("map2")
|
|
|
|
|
<< "std::map<const char*, Foo, std::less<const char*>, "
|
|
|
|
|
"std::allocator<std::pair<const char* const, Foo> > >"
|
|
|
|
|
<< "std::map<const char*, Foo>";
|
2009-10-13 14:42:18 +02:00
|
|
|
}
|
|
|
|
|
|
2013-02-13 16:12:12 +01:00
|
|
|
int main(int argc, char *argv[])
|
2009-10-20 18:15:03 +02:00
|
|
|
{
|
2013-02-13 16:12:12 +01:00
|
|
|
tst_gdb test;
|
|
|
|
|
return QTest::qExec(&test, argc, argv);
|
2009-10-13 14:42:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#include "tst_gdb.moc"
|
|
|
|
|
|