aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@nokia.com>2012-03-01 11:14:27 +0100
committerJoerg Bornemann <joerg.bornemann@nokia.com>2012-03-01 13:41:05 +0100
commit2e8e78963891df84e55c6c8a5aa5793d4c75656b (patch)
treea5c4551a75de43bf9dd04c2d6d41b66b903657db /tests/manual
parent6f469aa3cf4c2dddc0c5ac7a11ef9c20ebaeb0a5 (diff)
manual/tests/symhello removed
Change-Id: I20b315853e9c0d3dfc981d0db528b18781af7329 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com> Reviewed-by: Joerg Bornemann <joerg.bornemann@nokia.com>
Diffstat (limited to 'tests/manual')
-rw-r--r--tests/manual/symhello/hello.qbp10
-rw-r--r--tests/manual/symhello/main.cpp46
2 files changed, 0 insertions, 56 deletions
diff --git a/tests/manual/symhello/hello.qbp b/tests/manual/symhello/hello.qbp
deleted file mode 100644
index 7e9944a15..000000000
--- a/tests/manual/symhello/hello.qbp
+++ /dev/null
@@ -1,10 +0,0 @@
-import qbs.base 1.0
-
-Project {
- Product {
- name : "HelloWorld"
- type: "application"
- files : [ "main.cpp" ]
- }
-}
-
diff --git a/tests/manual/symhello/main.cpp b/tests/manual/symhello/main.cpp
deleted file mode 100644
index 8e1873a2a..000000000
--- a/tests/manual/symhello/main.cpp
+++ /dev/null
@@ -1,46 +0,0 @@
-/**************************************************************************
-**
-** This file is part of the Qt Build Suite
-**
-** Copyright (c) 2012 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.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU General
-** Public License version 3.0 as published by the Free Software Foundation
-** and appearing in the file LICENSE.GPL included in the packaging of this
-** file.
-** Please review the following information to ensure the GNU General
-** Public License version 3.0 requirements will be met:
-** http://www.gnu.org/copyleft/gpl.html.
-**
-** 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.
-**
-**************************************************************************/
-
-#include <e32std.h>
-#include <e32debug.h>
-
-TInt E32Main()
-{
- RDebug::Print(_L("Hello!"));
- return 0;
-}
-