tests: change skip color to yellow instead of red
parent
bcb9d90abb
commit
a61654009f
|
@ -48,7 +48,7 @@ SPENT 462 ms in code_2
|
||||||
const (
|
const (
|
||||||
BOK = term.ok_message('OK ')
|
BOK = term.ok_message('OK ')
|
||||||
BFAIL = term.fail_message('FAIL')
|
BFAIL = term.fail_message('FAIL')
|
||||||
BSKIP = term.fail_message('SKIP')
|
BSKIP = term.warn_message('SKIP')
|
||||||
BSPENT = term.ok_message('SPENT')
|
BSPENT = term.ok_message('SPENT')
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -30,6 +30,12 @@ pub fn fail_message(s string) string {
|
||||||
return if can_show_color_on_stdout() { red(s) } else { s }
|
return if can_show_color_on_stdout() { red(s) } else { s }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// warn_message returns a colored string with yellow color.
|
||||||
|
// If colors are not allowed, returns a given string.
|
||||||
|
pub fn warn_message(s string) string {
|
||||||
|
return if can_show_color_on_stdout() { yellow(s) } else { s }
|
||||||
|
}
|
||||||
|
|
||||||
// h_divider returns a horizontal divider line with a dynamic width,
|
// h_divider returns a horizontal divider line with a dynamic width,
|
||||||
// that depends on the current terminal settings.
|
// that depends on the current terminal settings.
|
||||||
// If an empty string is passed in, print enough spaces to make a new line
|
// If an empty string is passed in, print enough spaces to make a new line
|
||||||
|
|
Loading…
Reference in New Issue