aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorLiang Qi <liang.qi@theqtcompany.com>2016-02-15 20:56:51 +0100
committerLiang Qi <liang.qi@theqtcompany.com>2016-02-15 20:56:51 +0100
commit74d92ef80f5e13f2e10a592e0389a10bbeab189e (patch)
treeb6aa6e592e98004c89d76e348ac5b05023cd7e38 /tests
parent7764833edf8f7ca8a53b4ea18688051ea010b70c (diff)
parent24f3fd69a2e953619c48b4a632262ce8419fee40 (diff)
Merge remote-tracking branch 'origin/5.6' into 5.7v5.7.0-alpha1
Conflicts: .qmake.conf Change-Id: Ia67a352bb51848428f8b907629c70ed340b57d78
Diffstat (limited to 'tests')
-rw-r--r--tests/manual/SourceProxyTest.qml2
-rw-r--r--tests/manual/testSourceProxy.qml6
2 files changed, 4 insertions, 4 deletions
diff --git a/tests/manual/SourceProxyTest.qml b/tests/manual/SourceProxyTest.qml
index 94c948d..5ba74e7 100644
--- a/tests/manual/SourceProxyTest.qml
+++ b/tests/manual/SourceProxyTest.qml
@@ -91,7 +91,7 @@ Rectangle {
SourceProxy {
id: proxy
- input: sourcing == "shadersource" ? shaderSource : text;
+ input: sourcing == "shadersource" ? shaderSource : (root.sourcing == "layered" ? text : null);
visible: false
sourceRect: proxyPadding ? Qt.rect(-1, -1, text.width, text.height) : Qt.rect(0, 0, 0, 0);
}
diff --git a/tests/manual/testSourceProxy.qml b/tests/manual/testSourceProxy.qml
index 1ca3f95..a623ff7 100644
--- a/tests/manual/testSourceProxy.qml
+++ b/tests/manual/testSourceProxy.qml
@@ -223,19 +223,19 @@ Item {
label: "source: none\nproxy: any-interpolation"
sourcing: "none"
proxyInterpolation: SourceProxy.AnyInterpolation
- expectProxy: true
+ expectProxy: false
}
SourceProxyTest {
label: "source: none\nproxy: nearest-interpolation"
sourcing: "none"
proxyInterpolation: SourceProxy.NearestInterpolation
- expectProxy: true
+ expectProxy: false
}
SourceProxyTest {
label: "source: none\nproxy: linear-interpolation"
sourcing: "none"
proxyInterpolation: SourceProxy.LinearInterpolation
- expectProxy: true
+ expectProxy: false
}