aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/exportSimple
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@digia.com>2013-10-30 18:22:21 +0100
committerChristian Kandeler <christian.kandeler@digia.com>2013-10-31 17:48:47 +0100
commit7f0cc84396dd3d729200d3c99aae6358b9ed647e (patch)
tree51db9c6c8c48e8a9af073afc0f3e679518910c01 /tests/auto/blackbox/testdata/exportSimple
parent4cdb21ade421b4635d49a0f0d7b72118532b6ef6 (diff)
Clean up manual tests.
Turn some manual tests that add coverage of a feature into autotests. Turn some manual tests that demonstrate a feature into examples. Remove some manual tests that do neither. Change-Id: Ie54005e1ba5aad07319eb864cc5ad70e26308080 Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
Diffstat (limited to 'tests/auto/blackbox/testdata/exportSimple')
-rw-r--r--tests/auto/blackbox/testdata/exportSimple/lib1.cpp44
-rw-r--r--tests/auto/blackbox/testdata/exportSimple/main.cpp47
-rw-r--r--tests/auto/blackbox/testdata/exportSimple/project.qbs45
3 files changed, 136 insertions, 0 deletions
diff --git a/tests/auto/blackbox/testdata/exportSimple/lib1.cpp b/tests/auto/blackbox/testdata/exportSimple/lib1.cpp
new file mode 100644
index 000000000..2760a9170
--- /dev/null
+++ b/tests/auto/blackbox/testdata/exportSimple/lib1.cpp
@@ -0,0 +1,44 @@
+/****************************************************************************
+**
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
+** Contact: http://www.qt-project.org/legal
+**
+** This file is part of the Qt Build Suite.
+**
+** 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.
+**
+** 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.
+**
+** In addition, as a special exception, Digia gives you certain additional
+** rights. These rights are described in the Digia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+****************************************************************************/
+
+#include <stdio.h>
+
+#if defined(_WIN32) || defined(WIN32)
+# define EXPORT __declspec(dllexport)
+# define IMPORT __declspec(dllimport)
+#else
+# define EXPORT
+# define IMPORT
+#endif
+
+EXPORT int lib1_hello()
+{
+ puts("lib1 says hello!");
+ return 0;
+}
diff --git a/tests/auto/blackbox/testdata/exportSimple/main.cpp b/tests/auto/blackbox/testdata/exportSimple/main.cpp
new file mode 100644
index 000000000..b7ddf7215
--- /dev/null
+++ b/tests/auto/blackbox/testdata/exportSimple/main.cpp
@@ -0,0 +1,47 @@
+/****************************************************************************
+**
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
+** Contact: http://www.qt-project.org/legal
+**
+** This file is part of the Qt Build Suite.
+**
+** 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.
+**
+** 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.
+**
+** In addition, as a special exception, Digia gives you certain additional
+** rights. These rights are described in the Digia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+****************************************************************************/
+
+#include <stdio.h>
+
+#if defined(_WIN32) || defined(WIN32)
+# define EXPORT __declspec(dllexport)
+# define IMPORT __declspec(dllimport)
+#else
+# define EXPORT
+# define IMPORT
+#endif
+
+IMPORT int lib1_hello();
+
+int main()
+{
+ puts("application says hello!");
+ return lib1_hello();
+}
+
diff --git a/tests/auto/blackbox/testdata/exportSimple/project.qbs b/tests/auto/blackbox/testdata/exportSimple/project.qbs
new file mode 100644
index 000000000..1b665b880
--- /dev/null
+++ b/tests/auto/blackbox/testdata/exportSimple/project.qbs
@@ -0,0 +1,45 @@
+import qbs 1.0
+
+Project {
+ Application {
+ name : "HelloWorld"
+ destinationDirectory: "bin"
+ Group {
+ files : [ "main.cpp" ]
+ }
+ Depends { name: "cpp" }
+ Depends { name: 'dummy' }
+ }
+
+ Product {
+ name: 'dummy'
+ Group {
+ files: 'main.cpp'
+ qbs.install: true
+ }
+ Export {
+ Depends { name: 'dummy2' }
+ }
+ }
+
+ Product {
+ name: 'dummy2'
+ Group {
+ files: 'lib1.cpp'
+ qbs.install: true
+ }
+ Export {
+ Depends { name: 'lib1' }
+ }
+ }
+
+ DynamicLibrary {
+ name : "lib1"
+ destinationDirectory: "bin"
+ Group {
+ files : [ "lib1.cpp" ]
+ }
+ Depends { name: "cpp" }
+ }
+}
+