File tree 3 files changed +22
-13
lines changed
3 files changed +22
-13
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,9 @@ var glob = require("glob");
8
8
var devPath = __dirname . split ( "/" ) . pop ( ) ;
9
9
10
10
var paths = [
11
- "tests/Render/Simple/*.qml"
11
+ "tests/Render/Simple/*.qml" ,
12
+ "tests/QtQuick/qml/TextBasic.qml" ,
13
+ "tests/QtQuick/qml/RectangleColor.qml"
12
14
] ;
13
15
14
16
paths . forEach ( function ( path ) {
Original file line number Diff line number Diff line change @@ -5,25 +5,31 @@ Loader{
5
5
Component .onCompleted : {
6
6
console .log (" completed" )
7
7
console .log (script)
8
- timer .start ()
9
-
8
+ // timer.start()
9
+ // Qt.quit()
10
10
}
11
11
12
- function grab (){
12
+ function grab (tag ){
13
13
var path = source .toString ()
14
- .replace (" .qml" , " .png " )
14
+ .replace (" .qml" , " " )
15
15
.replace (" file://" , " " )
16
- console .log (" grab" + path)
17
- shorty .shootFull (path)
16
+ if (tag)
17
+ path = path + " -" + tag
18
+ console .log (" grab" + path + " .png" )
19
+ shorty .shootFull (path+ " .png" )
20
+ }
21
+ function done (){
22
+ Qt .quit ()
23
+ }
24
+ onLoaded: {
25
+ timer .start ()
18
26
}
27
+
19
28
Timer{
20
29
id: timer
21
30
interval: 10
22
31
onTriggered: {
23
- grab ()
24
- Qt .quit ()
32
+ item .test ()
25
33
}
26
34
}
27
35
}
28
-
29
-
Original file line number Diff line number Diff line change 1
- lupdate_only {
1
+ // lupdate_only {
2
2
SOURCES = *.qml \
3
3
../tests/Render/Simple/ *.qml \
4
4
../tests/Render/Async/ *.qml \
5
5
../tests/QtQuick/qml/ *.qml \
6
6
../tests/QMLEngine/qml/ *.qml \
7
- }
7
+ / / }
8
8
9
9
DISTFILES += \
10
10
../tests/Render/Async/tester.qml
11
+
You can’t perform that action at this time.
0 commit comments