aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickimage/data/qtbug_22125.qml
diff options
context:
space:
mode:
authorSimon Hausmann <simon.hausmann@theqtcompany.com>2015-04-22 17:15:30 +0200
committerFrederik Gladhorn <frederik.gladhorn@theqtcompany.com>2015-04-25 12:02:55 +0000
commit79d56651edc05133ebae13bb93733373b10380f9 (patch)
treed60393857c0f1b28f9e34c55f4461e2f25c99a9e /tests/auto/quick/qquickimage/data/qtbug_22125.qml
parentbfd596f36724029441d54095a126d25168e105c1 (diff)
Prospective fix for flakey "network" related QML testsv5.4.2
Replace hard-coded server ports with dynamically allocated ports. Change-Id: Iab8f9a88343a9f2c49af3cd700c954c13c3bf121 Reviewed-by: Frederik Gladhorn <frederik.gladhorn@theqtcompany.com>
Diffstat (limited to 'tests/auto/quick/qquickimage/data/qtbug_22125.qml')
-rw-r--r--tests/auto/quick/qquickimage/data/qtbug_22125.qml18
1 files changed, 9 insertions, 9 deletions
diff --git a/tests/auto/quick/qquickimage/data/qtbug_22125.qml b/tests/auto/quick/qquickimage/data/qtbug_22125.qml
index 9b68c0a125..30c0b1d7fb 100644
--- a/tests/auto/quick/qquickimage/data/qtbug_22125.qml
+++ b/tests/auto/quick/qquickimage/data/qtbug_22125.qml
@@ -8,7 +8,7 @@ Item {
GridView {
anchors.fill: parent
delegate: Image {
- source: imagePath;
+ source: serverBaseUrl + imagePath;
asynchronous: true
smooth: true
width: 200
@@ -16,28 +16,28 @@ Item {
}
model: ListModel {
ListElement {
- imagePath: "http://127.0.0.1:14451/big256.png"
+ imagePath: "/big256.png"
}
ListElement {
- imagePath: "http://127.0.0.1:14451/big256.png"
+ imagePath: "/big256.png"
}
ListElement {
- imagePath: "http://127.0.0.1:14451/big256.png"
+ imagePath: "/big256.png"
}
ListElement {
- imagePath: "http://127.0.0.1:14451/colors.png"
+ imagePath: "/colors.png"
}
ListElement {
- imagePath: "http://127.0.0.1:14451/colors1.png"
+ imagePath: "/colors1.png"
}
ListElement {
- imagePath: "http://127.0.0.1:14451/big.jpeg"
+ imagePath: "/big.jpeg"
}
ListElement {
- imagePath: "http://127.0.0.1:14451/heart.png"
+ imagePath: "/heart.png"
}
ListElement {
- imagePath: "http://127.0.0.1:14451/green.png"
+ imagePath: "/green.png"
}
}
}