summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDenis Shienkov <denis.shienkov@gmail.com>2020-09-10 22:31:32 +0300
committerDenis Shienkov <denis.shienkov@gmail.com>2020-09-11 18:31:06 +0000
commitb4711e02490e74dc7086b82114e393836c3672e7 (patch)
tree4174f2f9aa05792bdb66aeeb1a82f1390676f8ab /tests
parent0a74e12a1f5c7abd58768677ff0ede1feb4786d5 (diff)
downloadqbs-b4711e02490e74dc7086b82114e393836c3672e7.tar.gz
Remove extra semicolons
Change-Id: If2c25fb03a9c6429a4af66efcd703e4fefe65820 Reviewed-by: Ivan Komissarov <ABBAPOH@gmail.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/blackbox/testdata-qt/static-qt-plugin-linking/static-qt-plugin-linking.qbs2
-rw-r--r--tests/auto/blackbox/testdata/conditional-filetagger/conditional-filetagger.qbs2
-rw-r--r--tests/auto/language/testdata/chained-probes/modules/m/m.qbs4
-rw-r--r--tests/auto/language/testdata/conditionaldepends.qbs8
-rw-r--r--tests/auto/language/testdata/exports.qbs3
5 files changed, 10 insertions, 9 deletions
diff --git a/tests/auto/blackbox/testdata-qt/static-qt-plugin-linking/static-qt-plugin-linking.qbs b/tests/auto/blackbox/testdata-qt/static-qt-plugin-linking/static-qt-plugin-linking.qbs
index 97c04f419..a9608c001 100644
--- a/tests/auto/blackbox/testdata-qt/static-qt-plugin-linking/static-qt-plugin-linking.qbs
+++ b/tests/auto/blackbox/testdata-qt/static-qt-plugin-linking/static-qt-plugin-linking.qbs
@@ -22,5 +22,5 @@ Product {
Depends { name: "Qt.core" }
Depends { name: "Qt.gui" }
- Depends { name: "Qt.qminimal"; condition: Qt.core.staticBuild; }
+ Depends { name: "Qt.qminimal"; condition: Qt.core.staticBuild }
}
diff --git a/tests/auto/blackbox/testdata/conditional-filetagger/conditional-filetagger.qbs b/tests/auto/blackbox/testdata/conditional-filetagger/conditional-filetagger.qbs
index 5f0c93e46..f5d7ad676 100644
--- a/tests/auto/blackbox/testdata/conditional-filetagger/conditional-filetagger.qbs
+++ b/tests/auto/blackbox/testdata/conditional-filetagger/conditional-filetagger.qbs
@@ -1,7 +1,7 @@
CppApplication {
name: "theApp"
property bool enableTagger
- files: ["main.custom"];
+ files: ["main.custom"]
FileTagger {
condition: enableTagger
patterns: ["*.custom"]
diff --git a/tests/auto/language/testdata/chained-probes/modules/m/m.qbs b/tests/auto/language/testdata/chained-probes/modules/m/m.qbs
index 3c6bcd1c9..bf68e56b6 100644
--- a/tests/auto/language/testdata/chained-probes/modules/m/m.qbs
+++ b/tests/auto/language/testdata/chained-probes/modules/m/m.qbs
@@ -2,13 +2,13 @@ Module {
Probe {
id: probe1
property string probe1Prop
- configure: { probe1Prop = "probe1Val"; found = true; }
+ configure: { probe1Prop = "probe1Val"; found = true }
}
Probe {
id: probe2
property string inputProp: prop1
property string probe2Prop
- configure: { probe2Prop = inputProp + "probe2Val"; found = true; }
+ configure: { probe2Prop = inputProp + "probe2Val"; found = true }
}
property string prop1: probe1.probe1Prop
property string prop2: probe2.probe2Prop
diff --git a/tests/auto/language/testdata/conditionaldepends.qbs b/tests/auto/language/testdata/conditionaldepends.qbs
index 9a499da92..e4f9fae7d 100644
--- a/tests/auto/language/testdata/conditionaldepends.qbs
+++ b/tests/auto/language/testdata/conditionaldepends.qbs
@@ -14,25 +14,25 @@ Project {
Product {
name: "product_props_true"
property bool someTrueProp: true
- Depends { condition: someTrueProp; name: "dummy"}
+ Depends { condition: someTrueProp; name: "dummy" }
}
Product {
name: "product_props_false"
property bool someFalseProp: false
- Depends { condition: someFalseProp; name: "dummy"}
+ Depends { condition: someFalseProp; name: "dummy" }
}
property bool someTruePrjProp: true
Product {
name: "project_props_true"
- Depends { condition: project.someTruePrjProp; name: "dummy"}
+ Depends { condition: project.someTruePrjProp; name: "dummy" }
}
property bool someFalsePrjProp: false
Product {
name: "project_props_false"
- Depends { condition: project.someFalsePrjProp; name: "dummy"}
+ Depends { condition: project.someFalsePrjProp; name: "dummy" }
}
Product {
diff --git a/tests/auto/language/testdata/exports.qbs b/tests/auto/language/testdata/exports.qbs
index 419304297..a304edd61 100644
--- a/tests/auto/language/testdata/exports.qbs
+++ b/tests/auto/language/testdata/exports.qbs
@@ -142,8 +142,9 @@ Project {
name: "broken_cycle1"
Export {
property bool depend: true
- Depends { name: "broken_cycle3"; condition: depend } }
+ Depends { name: "broken_cycle3"; condition: depend }
}
+ }
Product {
name: "broken_cycle2"
Export {