aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorIvan Komissarov <ABBAPOH@gmail.com>2018-11-26 22:09:02 +0100
committerIvan Komissarov <ABBAPOH@gmail.com>2018-12-10 18:21:07 +0000
commitd6345df9d51f4a122ba01172c927adaf6d898a80 (patch)
treef5c11745056464958b5b5bee9a40cc4cdeb77f28 /tests
parentc45593d3c8a2a9086e697e2dfa3974bd54188a95 (diff)
Rename PathProbe.pathPrefixes and PathProbe.platformPaths properties
The naming was misleading - prefixes had the same logical meaning as platformPaths, despite the fact completely different PathProbe.pathSuffixes property exists. Change-Id: Ie593b5e03d27de4f8aafed821a3b37cc1b3b0b9e Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/blackbox/testdata/dynamicRuleOutputs/before/genlexer.qbs2
-rw-r--r--tests/auto/blackbox/testdata/includeLookup/modules/definition/module.qbs2
-rw-r--r--tests/auto/blackbox/testdata/probeProperties/probeProperties.qbs4
3 files changed, 4 insertions, 4 deletions
diff --git a/tests/auto/blackbox/testdata/dynamicRuleOutputs/before/genlexer.qbs b/tests/auto/blackbox/testdata/dynamicRuleOutputs/before/genlexer.qbs
index 5b50b5000..00c93a2ac 100644
--- a/tests/auto/blackbox/testdata/dynamicRuleOutputs/before/genlexer.qbs
+++ b/tests/auto/blackbox/testdata/dynamicRuleOutputs/before/genlexer.qbs
@@ -53,7 +53,7 @@ Project {
Probes.PathProbe {
id: flexProbe
names: ["flex"]
- platformPaths: ["/usr/local/bin", "/usr/bin", "/bin"]
+ platformSearchPaths: ["/usr/local/bin", "/usr/bin", "/bin"]
}
property bool isFlexAvailable: flexProbe.found
Rule {
diff --git a/tests/auto/blackbox/testdata/includeLookup/modules/definition/module.qbs b/tests/auto/blackbox/testdata/includeLookup/modules/definition/module.qbs
index c28fd1310..8762a780a 100644
--- a/tests/auto/blackbox/testdata/includeLookup/modules/definition/module.qbs
+++ b/tests/auto/blackbox/testdata/includeLookup/modules/definition/module.qbs
@@ -7,7 +7,7 @@ Module {
Probes.IncludeProbe {
id: includeNode
names: "fakeopenssl/sha.h"
- platformPaths: [modulePath]
+ platformSearchPaths: [modulePath]
}
cpp.defines: includeNode.found ? 'TEXT="' + includeNode.path + '"' : undefined
}
diff --git a/tests/auto/blackbox/testdata/probeProperties/probeProperties.qbs b/tests/auto/blackbox/testdata/probeProperties/probeProperties.qbs
index 673e478b8..9846eacef 100644
--- a/tests/auto/blackbox/testdata/probeProperties/probeProperties.qbs
+++ b/tests/auto/blackbox/testdata/probeProperties/probeProperties.qbs
@@ -4,13 +4,13 @@ CppApplication {
Probes.PathProbe {
id: probe1
names: ["bin/tool"]
- platformPaths: [product.sourceDirectory]
+ platformSearchPaths: [product.sourceDirectory]
}
Probes.PathProbe {
id: probe2
names: ["tool"]
- platformPaths: [product.sourceDirectory + "/bin"]
+ platformSearchPaths: [product.sourceDirectory + "/bin"]
}
targetName: {