diff --git a/tests/manual/proparser/main.cpp b/tests/manual/proparser/main.cpp deleted file mode 100644 index e5ba80ff19d11efc09d61c0fd74b962d074e24a9..0000000000000000000000000000000000000000 --- a/tests/manual/proparser/main.cpp +++ /dev/null @@ -1,44 +0,0 @@ -/************************************************************************** -** -** This file is part of Qt Creator -** -** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). -** -** Contact: Nokia Corporation (qt-info@nokia.com) -** -** Commercial Usage -** -** Licensees holding valid Qt Commercial licenses may use this file in -** accordance with the Qt Commercial License Agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Nokia. -** -** GNU Lesser General Public License Usage -** -** 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. -** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. -** -**************************************************************************/ - -#include "proreader.h" -#include "proitems.h" -#include "proxml.h" - -#include <QtCore/QDebug> - -int main(int argc, char *argv[]) -{ - ProReader pr; - ProFile *pf = pr.read(QString::fromUtf8(argv[1])); - - qDebug() << Qt4ProjectManager::Internal::ProXmlParser::itemToString(pf); - - return 0; -} diff --git a/tests/manual/proparser/proparser.pro b/tests/manual/proparser/proparser.pro deleted file mode 100644 index c822929991ce7f65519beb8b75605964bba15090..0000000000000000000000000000000000000000 --- a/tests/manual/proparser/proparser.pro +++ /dev/null @@ -1,20 +0,0 @@ -TEMPLATE = app -TARGET = -DEPENDPATH += . -INCLUDEPATH += . -CONFIG += console -QT += xml - -PROXMLPATH = ../../../src/plugins/qt4projectmanager/proparser -PROPARSERPATH = $$(QTDIR)/tools/linguist/shared -INCLUDEPATH += $$PROPARSERPATH $$PROXMLPATH - -# Input -HEADERS += $$PROPARSERPATH/proitems.h \ - $$PROXMLPATH/proxml.h \ - $$PROPARSERPATH/proreader.h -SOURCES += main.cpp \ - $$PROPARSERPATH/proitems.cpp \ - $$PROXMLPATH/proxml.cpp \ - $$PROPARSERPATH/proreader.cpp - diff --git a/tests/manual/proparser/test.pro b/tests/manual/proparser/test.pro deleted file mode 100644 index 55921087c1f56d6165ebb5c1e32baece9ba4d47f..0000000000000000000000000000000000000000 --- a/tests/manual/proparser/test.pro +++ /dev/null @@ -1,27 +0,0 @@ -#comment - -TEMPLATE = app -TARGET = -DEPENDPATH += . -INCLUDEPATH += . -CONFIG += console -QT += xml - -win32 { - PROPARSERPATH = ../../some/other/test/test - unix:PROPARSERPATH = ../../test/test -} - -# test comment -PROPARSERPATH = ../../../src/plugins/qt4projectmanager/proparser -INCLUDEPATH += $$PROPARSERPATH - -# Input -HEADERS += $$PROPARSERPATH/proitems.h \ # test comment2 - $$PROPARSERPATH/proxml.h \ - $$PROPARSERPATH/proreader.h -SOURCES += main.cpp \ - $$PROPARSERPATH/proitems.cpp \ -# test comment 3 - $$PROPARSERPATH/proxml.cpp \ - $$PROPARSERPATH/proreader.cpp