These are additional items I would like to see logged in the terminal, based on recent reading and getting familiar with kola and the Container Linux SDK.
- console prompt before user input is required
- affected commands:
- check-console
- console message indicating a typically long wait time for test to finish
- usually a wait time is before a cluster is spawning - can output a message indicating this
- affected commands:
- bootchart - not implementing as intended use is kola bootchart > bootchart.svg
- spawn - already has under
--verboseoption - mkimage? - not worth adding (not long enough wait time)
- count of the number of tests remaining (similar idea to the
ebuildscript for the SDK giving number of jobs remaining)
- affected commands:
- run
- can achieve this by putting something like:
fmt.Fprintf(t.parent.w, "Tests remaining: %v\n", t.suite.waiting)beforet.signal <- trueinharness/harness.gohowever this may be complicating things too much as tests are not run sequentially - may not make sense
- console message to indicate why a test was excluded (based on
filterTests)
- affected commands:
- run
manpages which contain the same information as running--helpflag onkola(?)
- may involve build process to generate man pages
- may be unwanted (man pages are extra + somewhat redundant bytes to ship)
- requires sync with --help
- Upgrade test - loading pecentage is usually 0.28%