mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-22 13:45:38 +00:00
tests: Rename virtTestUseTerminalColors to virTestUseTerminalColors.
This function doesn't follow our convention of naming functions.
This commit is contained in:
parent
d77e453a01
commit
c2f36506b7
@ -89,7 +89,7 @@ bool virTestOOMActive(void)
|
|||||||
return testOOMActive;
|
return testOOMActive;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int virtTestUseTerminalColors(void)
|
static int virTestUseTerminalColors(void)
|
||||||
{
|
{
|
||||||
return isatty(STDIN_FILENO);
|
return isatty(STDIN_FILENO);
|
||||||
}
|
}
|
||||||
@ -187,17 +187,17 @@ virTestRun(const char *title,
|
|||||||
|
|
||||||
if (virTestGetVerbose()) {
|
if (virTestGetVerbose()) {
|
||||||
if (ret == 0)
|
if (ret == 0)
|
||||||
if (virtTestUseTerminalColors())
|
if (virTestUseTerminalColors())
|
||||||
fprintf(stderr, "\e[32mOK\e[0m\n"); /* green */
|
fprintf(stderr, "\e[32mOK\e[0m\n"); /* green */
|
||||||
else
|
else
|
||||||
fprintf(stderr, "OK\n");
|
fprintf(stderr, "OK\n");
|
||||||
else if (ret == EXIT_AM_SKIP)
|
else if (ret == EXIT_AM_SKIP)
|
||||||
if (virtTestUseTerminalColors())
|
if (virTestUseTerminalColors())
|
||||||
fprintf(stderr, "\e[34m\e[1mSKIP\e[0m\n"); /* bold blue */
|
fprintf(stderr, "\e[34m\e[1mSKIP\e[0m\n"); /* bold blue */
|
||||||
else
|
else
|
||||||
fprintf(stderr, "SKIP\n");
|
fprintf(stderr, "SKIP\n");
|
||||||
else
|
else
|
||||||
if (virtTestUseTerminalColors())
|
if (virTestUseTerminalColors())
|
||||||
fprintf(stderr, "\e[31m\e[1mFAILED\e[0m\n"); /* bold red */
|
fprintf(stderr, "\e[31m\e[1mFAILED\e[0m\n"); /* bold red */
|
||||||
else
|
else
|
||||||
fprintf(stderr, "FAILED\n");
|
fprintf(stderr, "FAILED\n");
|
||||||
|
Loading…
Reference in New Issue
Block a user