aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qml/qqmlecmascript/data')
-rw-r--r--tests/auto/qml/qqmlecmascript/data/include_remote.js6
-rw-r--r--tests/auto/qml/qqmlecmascript/data/include_remote.qml4
-rw-r--r--tests/auto/qml/qqmlecmascript/data/include_remote_missing.js4
-rw-r--r--tests/auto/qml/qqmlecmascript/data/include_remote_missing.qml4
4 files changed, 11 insertions, 7 deletions
diff --git a/tests/auto/qml/qqmlecmascript/data/include_remote.js b/tests/auto/qml/qqmlecmascript/data/include_remote.js
index 4331cb79d0..4b5e153736 100644
--- a/tests/auto/qml/qqmlecmascript/data/include_remote.js
+++ b/tests/auto/qml/qqmlecmascript/data/include_remote.js
@@ -1,8 +1,8 @@
var myvar = 10;
-function go()
+function go(serverBaseUrl)
{
- var a = Qt.include("http://127.0.0.1:8111/remote_file.js",
+ var a = Qt.include(serverBaseUrl + "/remote_file.js",
function(o) {
test2 = o.status == o.OK
test3 = a.status == a.OK
@@ -13,7 +13,7 @@ function go()
test1 = a.status == a.LOADING
- var b = Qt.include("http://127.0.0.1:8111/exception.js",
+ var b = Qt.include(serverBaseUrl + "/exception.js",
function(o) {
test7 = o.status == o.EXCEPTION
test8 = b.status == a.EXCEPTION
diff --git a/tests/auto/qml/qqmlecmascript/data/include_remote.qml b/tests/auto/qml/qqmlecmascript/data/include_remote.qml
index fe020a55df..7742b621a9 100644
--- a/tests/auto/qml/qqmlecmascript/data/include_remote.qml
+++ b/tests/auto/qml/qqmlecmascript/data/include_remote.qml
@@ -17,5 +17,7 @@ QtObject {
property bool test9: false
property bool test10: false
- Component.onCompleted: IncludeTest.go();
+ property string serverBaseUrl;
+
+ Component.onCompleted: IncludeTest.go(serverBaseUrl);
}
diff --git a/tests/auto/qml/qqmlecmascript/data/include_remote_missing.js b/tests/auto/qml/qqmlecmascript/data/include_remote_missing.js
index 27dd63badf..5ebc1aadf0 100644
--- a/tests/auto/qml/qqmlecmascript/data/include_remote_missing.js
+++ b/tests/auto/qml/qqmlecmascript/data/include_remote_missing.js
@@ -1,6 +1,6 @@
-function go()
+function go(serverBaseUrl)
{
- var a = Qt.include("http://127.0.0.1:8111/missing.js",
+ var a = Qt.include(serverBaseUrl + "/missing.js",
function(o) {
test2 = o.status == o.NETWORK_ERROR
test3 = a.status == a.NETWORK_ERROR
diff --git a/tests/auto/qml/qqmlecmascript/data/include_remote_missing.qml b/tests/auto/qml/qqmlecmascript/data/include_remote_missing.qml
index e8ef609fed..eb75bd676f 100644
--- a/tests/auto/qml/qqmlecmascript/data/include_remote_missing.qml
+++ b/tests/auto/qml/qqmlecmascript/data/include_remote_missing.qml
@@ -8,5 +8,7 @@ QtObject {
property bool test2: false
property bool test3: false
- Component.onCompleted: IncludeTest.go();
+ property string serverBaseUrl;
+
+ Component.onCompleted: IncludeTest.go(serverBaseUrl);
}