builder: Include help-lint results in report

db4
Eduardo Cavazos 2008-03-09 04:49:35 -06:00
parent 959aef925f
commit 6f2a435498
2 changed files with 6 additions and 0 deletions

View File

@ -132,6 +132,7 @@ SYMBOL: build-status
"Did not pass load-everything: " print "load-everything-vocabs" cat
"Did not pass test-all: " print "test-all-vocabs" cat
"help-lint results:" print "help-lint" cat
"Benchmarks: " print "benchmarks" eval-file benchmarks.

View File

@ -8,6 +8,7 @@ USING: kernel namespaces sequences assocs builder continuations
tools.test
io.encodings.utf8
combinators.cleave
help.lint
bootstrap.stage2 benchmark builder.util ;
IN: builder.test
@ -28,6 +29,9 @@ IN: builder.test
]
with-file-writer ;
: do-help-lint ( -- )
"" run-help-lint "../help-lint" utf8 [ typos. ] with-file-writer ;
: do-benchmarks ( -- )
run-benchmarks "../benchmarks" utf8 [ . ] with-file-writer ;
@ -35,6 +39,7 @@ IN: builder.test
bootstrap-time get "../boot-time" utf8 [ . ] with-file-writer
[ do-load ] runtime "../load-time" utf8 [ . ] with-file-writer
[ do-tests ] runtime "../test-time" utf8 [ . ] with-file-writer
do-help-lint
do-benchmarks ;
MAIN: do-all