From aaf296ca215381c2e7581642c5131a7ea4278a1e Mon Sep 17 00:00:00 2001 From: Oswald Buddenhagen <oswald.buddenhagen@nokia.com> Date: Wed, 20 Jan 2010 14:29:38 +0100 Subject: [PATCH] remove forgotten proxmlreader test --- tests/manual/proparser/main.cpp | 44 ---------------------------- tests/manual/proparser/proparser.pro | 20 ------------- tests/manual/proparser/test.pro | 27 ----------------- 3 files changed, 91 deletions(-) delete mode 100644 tests/manual/proparser/main.cpp delete mode 100644 tests/manual/proparser/proparser.pro delete mode 100644 tests/manual/proparser/test.pro diff --git a/tests/manual/proparser/main.cpp b/tests/manual/proparser/main.cpp deleted file mode 100644 index e5ba80ff19d..00000000000 --- 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 c822929991c..00000000000 --- 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 55921087c1f..00000000000 --- 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 -- GitLab