aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/debugger/gui/tst_gui.cpp
diff options
context:
space:
mode:
authorhjk <qtc-committer@nokia.com>2011-08-23 12:47:30 +0200
committerhjk <qthjk@ovi.com>2011-08-24 13:54:34 +0200
commit051545a499ea402f8444e000529818db3d61a409 (patch)
tree3eb0e4b5d4542d59eb20156548a9795ab542d7b2 /tests/manual/debugger/gui/tst_gui.cpp
parent3a2c3483447a2efbb11031dd9f9100d22d983345 (diff)
debugger: rename manual tests from 'gdbdebugger' to 'debugger'
Change-Id: I0f92b03fa99d81fd58d92eb8a0f3dfe3b1cbf7b4 Reviewed-on: http://codereview.qt.nokia.com/3402 Reviewed-by: hjk <qthjk@ovi.com>
Diffstat (limited to 'tests/manual/debugger/gui/tst_gui.cpp')
-rw-r--r--tests/manual/debugger/gui/tst_gui.cpp44
1 files changed, 44 insertions, 0 deletions
diff --git a/tests/manual/debugger/gui/tst_gui.cpp b/tests/manual/debugger/gui/tst_gui.cpp
new file mode 100644
index 0000000000..e537b0db97
--- /dev/null
+++ b/tests/manual/debugger/gui/tst_gui.cpp
@@ -0,0 +1,44 @@
+/**************************************************************************
+**
+** This file is part of Qt Creator
+**
+** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
+**
+** Contact: Nokia Corporation (info@qt.nokia.com)
+**
+**
+** GNU Lesser General Public License Usage
+**
+** 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, Nokia gives you certain additional
+** rights. These rights are described in the Nokia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** Other Usage
+**
+** Alternatively, this file may be used in accordance with the terms and
+** conditions contained in a signed written agreement between you and Nokia.
+**
+** If you have questions regarding the use of this file, please contact
+** Nokia at info@qt.nokia.com.
+**
+**************************************************************************/
+
+#include <QtGui/QApplication>
+#include <QtDebug>
+#include "mainwindow.h"
+
+int main(int argc, char *argv[])
+{
+ QApplication a(argc, argv);
+ qDebug() << "pid=" << QApplication::applicationPid();
+ Foo::MainWindow w;
+ w.show();
+ return a.exec();
+}