Skip to content

Commit 1330eb5

Browse files
committed
check_gui_test_log.py: blacklist more QML warnings
1 parent 284f4db commit 1330eb5

File tree

1 file changed

+27
-4
lines changed

1 file changed

+27
-4
lines changed

tools/gui_test/check_gui_test_log.py

Lines changed: 27 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,37 @@
1515
]
1616

1717
MUST_NOT = [
18+
"Apparently out-of-range date",
19+
"called when not loading",
20+
"can't resolve property alias for 'on' assignment",
21+
"Cannot create a component",
22+
"Cannot create new component instance",
23+
"Cannot pause a stopped animation",
24+
"Cannot set context object",
25+
"Cannot set property",
26+
"Component creation is recursing",
27+
"Component destroyed while completion pending",
28+
"Component is not ready",
29+
"Could not convert argument",
30+
"Could not convert array value",
31+
"Cyclic dependency detected ",
32+
"cyclic prototype value",
1833
"Detected anchors on an item that is managed by a layout",
34+
"emitted, but no receivers connected to handle it",
35+
"Failed to get image from provider",
36+
"failed to load component",
37+
"insertAnimation only supports to add animations after the current one",
38+
"Model size of", # "...is less than 0" AND/OR "...is bigger than upper limit"
39+
"Must provide an engine",
40+
"QML LoaderImage",
41+
"qmlRegisterSingletonType requires absolute URLs",
42+
"qmlRegisterType requires absolute URLs",
1943
"ReferenceError:",
44+
"specifying the encoding as fourth argument is deprecated",
45+
"TypeError",
2046
"Unable to assign",
47+
"Unable to handle unregistered datatype",
2148
"unregistered datatype",
22-
"Model size of", # "...is less than 0" AND/OR "...is bigger than upper limit"
23-
"failed to load component",
24-
"QML LoaderImage",
25-
"Failed to get image from provider",
2649
]
2750

2851

0 commit comments

Comments
 (0)