Overview
Comment: | Updated to mark kits which have been cross-compiled in yellow |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | 2fb02e4e853876b7f87cd9555d86626416e91956 |
User & Date: | rkeene on 2010-09-26 04:47:55 |
Other Links: | manifest | tags |
Context
2010-09-26
| ||
04:48 | Reduced change in Native ZLIB support patch check-in: f043a10e60 user: rkeene tags: trunk | |
04:47 | Updated to mark kits which have been cross-compiled in yellow check-in: 2fb02e4e85 user: rkeene tags: trunk | |
04:47 | Added basic tests README check-in: 1918f4d6cb user: rkeene tags: trunk | |
Changes
Modified build/test/publish-tests from [da07d29b3c] to [cd043e5464].
193
194
195
196
197
198
199
200
201
202
203
204
205
206
...
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
|
if {[llength $kitinfo(failedtests)] == 0} {
set status "OK"
set bgcolor "green"
} else {
set status "FAILED"
set bgcolor "yellow"
}
set failedtestshtml [list]
foreach test [lsort -dictionary $kitinfo(failedtests)] {
set testname [file rootname $test]
set testname [split $testname -]
for {set idx 0} {$idx < [llength $testname]} {incr idx} {
................................................................................
if {$loglink} {
lappend failedtestshtml "<small><a href=\"$test\">$testname</a></small>"
} else {
lappend failedtestshtml "<small>$testname</small>"
}
}
set kitdesc [pretty_print_buildinfo $kitinfo(buildflags)]
if {$kitinfo(built)} {
puts $fd " <td><a href=\"$kitinfo(file)\">$kitdesc</a></td>"
} else {
puts $fd " <td>$kitdesc</td>"
}
|
>
>
>
>
<
|
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
...
228
229
230
231
232
233
234
235
236
237
238
239
240
241
|
if {[llength $kitinfo(failedtests)] == 0} { set status "OK" set bgcolor "green" } else { set status "FAILED" set bgcolor "yellow" } if {[lsearch -exact $kitinfo(buildflags) xcompile] != -1} { set bgcolor "yellow" } set failedtestshtml [list] foreach test [lsort -dictionary $kitinfo(failedtests)] { set testname [file rootname $test] set testname [split $testname -] for {set idx 0} {$idx < [llength $testname]} {incr idx} { ................................................................................ if {$loglink} { lappend failedtestshtml "<small><a href=\"$test\">$testname</a></small>" } else { lappend failedtestshtml "<small>$testname</small>" } } set kitdesc [pretty_print_buildinfo $kitinfo(buildflags)] if {$kitinfo(built)} { puts $fd " <td><a href=\"$kitinfo(file)\">$kitdesc</a></td>" } else { puts $fd " <td>$kitdesc</td>" } |
Modified build/test/test from [bbdd56ab6f] to [cf8d3f1fd9].
79 80 81 82 83 84 85 86 87 88 89 90 91 92 |
linux-arm-min) kitcreator="./build/make-kit-arm" runnable="0" notk="1" iszip="1" ;; esac # Handle additional configuration tempkit="-${kit}-" for try in 1 2 3 4 5 6 7 8 9; do case "-${tempkit}-" in *-threaded-*) tempkit="$(echo "${tempkit}" | sed 's@-threaded-@-@')" |
> > > > |
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 |
linux-arm-min) kitcreator="./build/make-kit-arm" runnable="0" notk="1" iszip="1" ;; esac if [ "${runnable}" != "1" ]; then kit="${kit}-xcompile" fi # Handle additional configuration tempkit="-${kit}-" for try in 1 2 3 4 5 6 7 8 9; do case "-${tempkit}-" in *-threaded-*) tempkit="$(echo "${tempkit}" | sed 's@-threaded-@-@')" |