Overview
Context
Changes
Modified common.scm
from [c97b79852f]
to [6974d34de7].
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
-
+
|
;;======================================================================
;; Copyright 2006-2012, Matthew Welland.
;;
;; This program is made available under the GNU GPL version 2.0 or
;; greater. See the accompanying file COPYING for details.
;;
;; This program is distributed WITHOUT ANY WARRANTY; without even the
;; implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
;; PURPOSE.
;;======================================================================
(use srfi-1 data-structures posix regex-case (prefix base64 base64:)
matchable regex posix srfi-18 extras pkts (prefix dbi dbi:)
(prefix sqlite3 sqlite3:)
(prefix sqlite3 sqlite3:) typed-records
)
(declare (unit common))
(include "common_records.scm")
;; (require-library margs)
|
︙ | | |
Modified example/cfg/machines.dat
from [ef87a55f85]
to [f71cd72f81].
1
2
3
4
5
6
7
8
|
1
2
3
4
5
6
7
|
-
|
[]
[maxload]
zeus 0.40000000000000002
xena 0.20000000000000001
myth2 0.01
hades 1
[minfree]
zeus 1000
|
︙ | | |
Modified example/cfg/sxml/_sheets.sxml
from [84106e33a9]
to [e8a0f2e5d7].
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
-
+
+
+
+
-
+
+
-
+
+
-
+
+
-
+
+
-
+
+
-
-
+
+
+
+
|
((@ (http://www.w3.org/2001/XMLSchema-instance:schemaLocation
"http://www.gnumeric.org/v9.xsd"))
(http://www.gnumeric.org/v10.dtd:Version
(@ (Minor "17") (Major "10") (Full "1.10.17") (Epoch "1")))
(@ (Minor "17")
(Major "10")
(Full "1.10.17")
(Epoch "1")))
(http://www.gnumeric.org/v10.dtd:Attributes
(http://www.gnumeric.org/v10.dtd:Attribute
(http://www.gnumeric.org/v10.dtd:type "4")
(http://www.gnumeric.org/v10.dtd:name
"WorkbookView::show_horizontal_scrollbar")
(http://www.gnumeric.org/v10.dtd:value "TRUE"))
(http://www.gnumeric.org/v10.dtd:Attribute
(http://www.gnumeric.org/v10.dtd:type "4")
(http://www.gnumeric.org/v10.dtd:name
"WorkbookView::show_vertical_scrollbar")
(http://www.gnumeric.org/v10.dtd:value "TRUE"))
(http://www.gnumeric.org/v10.dtd:Attribute
(http://www.gnumeric.org/v10.dtd:type "4")
(http://www.gnumeric.org/v10.dtd:name "WorkbookView::show_notebook_tabs")
(http://www.gnumeric.org/v10.dtd:name
"WorkbookView::show_notebook_tabs")
(http://www.gnumeric.org/v10.dtd:value "TRUE"))
(http://www.gnumeric.org/v10.dtd:Attribute
(http://www.gnumeric.org/v10.dtd:type "4")
(http://www.gnumeric.org/v10.dtd:name "WorkbookView::do_auto_completion")
(http://www.gnumeric.org/v10.dtd:name
"WorkbookView::do_auto_completion")
(http://www.gnumeric.org/v10.dtd:value "TRUE"))
(http://www.gnumeric.org/v10.dtd:Attribute
(http://www.gnumeric.org/v10.dtd:type "4")
(http://www.gnumeric.org/v10.dtd:name "WorkbookView::is_protected")
(http://www.gnumeric.org/v10.dtd:name
"WorkbookView::is_protected")
(http://www.gnumeric.org/v10.dtd:value "FALSE")))
(urn:oasis:names:tc:opendocument:xmlns:office:1.0:document-meta
(@ (urn:oasis:names:tc:opendocument:xmlns:office:1.0:version "1.2"))
(@ (urn:oasis:names:tc:opendocument:xmlns:office:1.0:version
"1.2"))
(urn:oasis:names:tc:opendocument:xmlns:office:1.0:meta
(http://purl.org/dc/elements/1.1/:date "2014-02-14T06:16:26Z")
(http://purl.org/dc/elements/1.1/:date
"2014-02-14T06:16:26Z")
(urn:oasis:names:tc:opendocument:xmlns:meta:1.0:creation-date
"2014-02-14T06:16:17Z")))
(http://www.gnumeric.org/v10.dtd:Calculation
(@ (MaxIterations "100")
(ManualRecalc "0")
(IterationTolerance "0.001")
(FloatRadix "2")
(FloatDigits "53")
(EnableIteration "1")))
(http://www.gnumeric.org/v10.dtd:SheetNameIndex
(http://www.gnumeric.org/v10.dtd:SheetName
(@ (http://www.gnumeric.org/v10.dtd:Rows "65536")
(http://www.gnumeric.org/v10.dtd:Cols "256"))
"machines"))
(http://www.gnumeric.org/v10.dtd:Geometry (@ (Width "835") (Height "320")))
(http://www.gnumeric.org/v10.dtd:UIData (@ (SelectedTab "0"))))
(http://www.gnumeric.org/v10.dtd:Geometry
(@ (Width "835") (Height "320")))
(http://www.gnumeric.org/v10.dtd:UIData
(@ (SelectedTab "0"))))
|
Modified example/cfg/sxml/machines.sxml
from [59def89588]
to [bd64819d97].
︙ | | |
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
-
+
+
-
-
+
+
+
+
-
+
+
-
-
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
+
+
+
+
+
+
-
+
+
+
+
|
(DisplayOutlines "1")
(DisplayFormulas "0"))
(http://www.gnumeric.org/v10.dtd:MaxCol "3")
(http://www.gnumeric.org/v10.dtd:MaxRow "4")
(http://www.gnumeric.org/v10.dtd:Zoom "1")
(http://www.gnumeric.org/v10.dtd:Names
(http://www.gnumeric.org/v10.dtd:Name
(http://www.gnumeric.org/v10.dtd:name "Print_Area")
(http://www.gnumeric.org/v10.dtd:name
"Print_Area")
(http://www.gnumeric.org/v10.dtd:value "#REF!")
(http://www.gnumeric.org/v10.dtd:position "A1"))
(http://www.gnumeric.org/v10.dtd:Name
(http://www.gnumeric.org/v10.dtd:name "Sheet_Title")
(http://www.gnumeric.org/v10.dtd:value "\"machines\"")
(http://www.gnumeric.org/v10.dtd:name
"Sheet_Title")
(http://www.gnumeric.org/v10.dtd:value
"\"machines\"")
(http://www.gnumeric.org/v10.dtd:position "A1")))
(http://www.gnumeric.org/v10.dtd:PrintInformation
(http://www.gnumeric.org/v10.dtd:Margins
(http://www.gnumeric.org/v10.dtd:top (@ (PrefUnit "mm") (Points "120")))
(http://www.gnumeric.org/v10.dtd:top
(@ (PrefUnit "mm") (Points "120")))
(http://www.gnumeric.org/v10.dtd:bottom
(@ (PrefUnit "mm") (Points "120")))
(http://www.gnumeric.org/v10.dtd:left (@ (PrefUnit "mm") (Points "72")))
(http://www.gnumeric.org/v10.dtd:right (@ (PrefUnit "mm") (Points "72")))
(http://www.gnumeric.org/v10.dtd:left
(@ (PrefUnit "mm") (Points "72")))
(http://www.gnumeric.org/v10.dtd:right
(@ (PrefUnit "mm") (Points "72")))
(http://www.gnumeric.org/v10.dtd:header
(@ (PrefUnit "mm") (Points "72")))
(http://www.gnumeric.org/v10.dtd:footer
(@ (PrefUnit "mm") (Points "72"))))
(http://www.gnumeric.org/v10.dtd:Scale
(@ (type "percentage") (percentage "100")))
(http://www.gnumeric.org/v10.dtd:vcenter (@ (value "0")))
(http://www.gnumeric.org/v10.dtd:hcenter (@ (value "0")))
(http://www.gnumeric.org/v10.dtd:grid (@ (value "0")))
(http://www.gnumeric.org/v10.dtd:even_if_only_styles (@ (value "0")))
(http://www.gnumeric.org/v10.dtd:monochrome (@ (value "0")))
(http://www.gnumeric.org/v10.dtd:draft (@ (value "0")))
(http://www.gnumeric.org/v10.dtd:titles (@ (value "0")))
(http://www.gnumeric.org/v10.dtd:do_not_print (@ (value "0")))
(http://www.gnumeric.org/v10.dtd:print_range (@ (value "0")))
(http://www.gnumeric.org/v10.dtd:order "d_then_r")
(http://www.gnumeric.org/v10.dtd:orientation "portrait")
(http://www.gnumeric.org/v10.dtd:vcenter
(@ (value "0")))
(http://www.gnumeric.org/v10.dtd:hcenter
(@ (value "0")))
(http://www.gnumeric.org/v10.dtd:grid
(@ (value "0")))
(http://www.gnumeric.org/v10.dtd:even_if_only_styles
(@ (value "0")))
(http://www.gnumeric.org/v10.dtd:monochrome
(@ (value "0")))
(http://www.gnumeric.org/v10.dtd:draft
(@ (value "0")))
(http://www.gnumeric.org/v10.dtd:titles
(@ (value "0")))
(http://www.gnumeric.org/v10.dtd:do_not_print
(@ (value "0")))
(http://www.gnumeric.org/v10.dtd:print_range
(@ (value "0")))
(http://www.gnumeric.org/v10.dtd:order
"d_then_r")
(http://www.gnumeric.org/v10.dtd:orientation
"portrait")
(http://www.gnumeric.org/v10.dtd:Header
(@ (Right "") (Middle "&[TAB]") (Left "")))
(http://www.gnumeric.org/v10.dtd:Footer
(@ (Right "") (Middle "Page &[PAGE]") (Left "")))
(http://www.gnumeric.org/v10.dtd:paper "na_letter")
(http://www.gnumeric.org/v10.dtd:comments "in_place")
(http://www.gnumeric.org/v10.dtd:errors "as_displayed"))
(http://www.gnumeric.org/v10.dtd:paper
"na_letter")
(http://www.gnumeric.org/v10.dtd:comments
"in_place")
(http://www.gnumeric.org/v10.dtd:errors
"as_displayed"))
(http://www.gnumeric.org/v10.dtd:Styles
(http://www.gnumeric.org/v10.dtd:StyleRegion
(@ (startRow "0") (startCol "0") (endRow "65535") (endCol "255"))
(@ (startRow "0")
(startCol "0")
(endRow "65535")
(endCol "255"))
(http://www.gnumeric.org/v10.dtd:Style
(@ (WrapText "0")
(VAlign "2")
(ShrinkToFit "0")
(Shade "0")
(Rotation "0")
(PatternColor "0:0:0")
|
︙ | | |
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
|
-
+
+
-
+
+
-
-
+
+
+
+
+
+
|
(StrikeThrough "0")
(Script "0")
(Italic "0")
(Bold "0"))
"Sans"))))
(http://www.gnumeric.org/v10.dtd:Cols
(@ (DefaultSizePts "48"))
(http://www.gnumeric.org/v10.dtd:ColInfo (@ (Unit "48") (No "0")))
(http://www.gnumeric.org/v10.dtd:ColInfo
(@ (Unit "48") (No "0")))
(http://www.gnumeric.org/v10.dtd:ColInfo
(@ (Unit "52.5") (No "1") (HardSize "1")))
(http://www.gnumeric.org/v10.dtd:ColInfo (@ (Unit "48") (No "2")))
(http://www.gnumeric.org/v10.dtd:ColInfo
(@ (Unit "48") (No "2")))
(http://www.gnumeric.org/v10.dtd:ColInfo
(@ (Unit "182.2") (No "3") (HardSize "1"))))
(http://www.gnumeric.org/v10.dtd:Rows
(@ (DefaultSizePts "12.75"))
(http://www.gnumeric.org/v10.dtd:RowInfo
(@ (Unit "13.5") (No "0") (Count "5"))))
(http://www.gnumeric.org/v10.dtd:Selections
(@ (CursorRow "4") (CursorCol "0"))
(http://www.gnumeric.org/v10.dtd:Selection
(@ (startRow "4") (startCol "0") (endRow "4") (endCol "0"))))
(http://www.gnumeric.org/v10.dtd:SheetLayout (@ (TopLeft "A1")))
(@ (startRow "4")
(startCol "0")
(endRow "4")
(endCol "0"))))
(http://www.gnumeric.org/v10.dtd:SheetLayout
(@ (TopLeft "A1")))
(http://www.gnumeric.org/v10.dtd:Solver
(@ (ProgramR "0")
(ProblemType "0")
(NonNeg "1")
(ModelType "0")
(MaxTime "60")
(MaxIter "1000")
(Discr "0")
(AutoScale "0"))))
|
Modified example/megatest.config
from [ce9f9de360]
to [3de0051a8d].
1
2
3
4
5
6
7
8
9
10
|
1
2
3
4
5
6
7
8
9
10
|
-
-
+
+
|
[fields]
CFG_TYPE This is the refdb to use.
RUN_TYPE Can be: full or quick
CFG_TYPE TEXT
RUN_TYPE TEXT
[setup]
# Adjust max_concurrent_jobs to limit parallel jobs
max_concurrent_jobs 50
# This is your link path, best to set it and then not change it
linktree #{getenv MT_RUN_AREA_HOME}/linktree
|
︙ | | |
example/tests/diskspace/diskspace.sh became
executable with contents
[ce15f82073].
Modified runs.scm
from [80c295fb6f]
to [9b1ea23f22].
︙ | | |
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
|
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
|
-
+
|
#f ;; yes, really
(list (car tal)(cdr tal) reg reruns))
(begin
(if (runs:lownoise (conc "FAILED prerequisites or other issue" hed) 60)
(debug:print 0 *default-log-port* "WARNING: test " hed " has FAILED prerequisites or other issue. Internal state " nth-try " will be overridden and we'll retry."))
(mt:test-set-state-status-by-testname run-id test-name item-path "NOT_STARTED" "KEEP_TRYING" #f)
(hash-table-set! test-registry hed 0)
(runs:loop-values newtal reg reglen regfull))))
(runs:loop-values newtal reg reglen regfull reruns))))
(else
(if (runs:lownoise (conc "FAILED prerequitests and we tried" hed) 60)
(debug:print 0 *default-log-port* "WARNING: test " hed " has FAILED prerequitests and we've tried at least 10 times to run it. Giving up now."))
;; (debug:print 0 *default-log-port* " prereqs: " prereqs-not-met)
(hash-table-set! test-registry hed 'removed)
(mt:test-set-state-status-by-testname run-id test-name item-path "NOT_STARTED" "TEN_STRIKES" #f)
;; I'm unclear on if this roll up is needed - it may be the root cause of the "all set to FAIL" bug.
|
︙ | | |