Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
549969a6
Commit
549969a6
authored
Mar 27, 2022
by
Rafał Harabień
Committed by
Alexandre Julliard
Aug 02, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Allow printing test failure messages in bright red.
Colours are disabled by default, and can be enabled using WINETEST_COLOR=1.
parent
9d9b564e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
+9
-0
test.h
include/wine/test.h
+9
-0
No files found.
include/wine/test.h
View file @
549969a6
...
...
@@ -199,6 +199,9 @@ int winetest_report_success = 0;
/* silence todos and skips above this threshold */
int
winetest_mute_threshold
=
42
;
/* use ANSI escape codes for output coloring */
static
int
winetest_color
;
/* passing arguments around */
static
int
winetest_argc
;
static
char
**
winetest_argv
;
...
...
@@ -277,6 +280,9 @@ const char *winetest_elapsed(void)
return
wine_dbg_sprintf
(
"%.3f"
,
(
now
-
winetest_start_time
)
/
1000
.
0
);
}
static
const
char
color_reset
[]
=
"\e[0m"
;
static
const
char
color_bright_red
[]
=
"\e[1;91m"
;
static
void
winetest_printf
(
const
char
*
msg
,
...
)
__WINE_PRINTF_ATTR
(
1
,
2
);
static
void
winetest_printf
(
const
char
*
msg
,
...
)
{
...
...
@@ -374,8 +380,10 @@ int winetest_vok( int condition, const char *msg, va_list args )
{
if
(
!
condition
)
{
if
(
winetest_color
)
printf
(
color_bright_red
);
winetest_print_context
(
"Test failed: "
);
vprintf
(
msg
,
args
);
if
(
winetest_color
)
printf
(
color_reset
);
InterlockedIncrement
(
&
failures
);
return
0
;
}
...
...
@@ -656,6 +664,7 @@ int main( int argc, char **argv )
else
if
(
running_under_wine
())
winetest_platform
=
"wine"
;
if
(
GetEnvironmentVariableA
(
"WINETEST_COLOR"
,
p
,
sizeof
(
p
)
))
winetest_color
=
atoi
(
p
);
if
(
GetEnvironmentVariableA
(
"WINETEST_DEBUG"
,
p
,
sizeof
(
p
)
))
winetest_debug
=
atoi
(
p
);
if
(
GetEnvironmentVariableA
(
"WINETEST_INTERACTIVE"
,
p
,
sizeof
(
p
)
))
winetest_interactive
=
atoi
(
p
);
if
(
GetEnvironmentVariableA
(
"WINETEST_REPORT_SUCCESS"
,
p
,
sizeof
(
p
)
))
winetest_report_success
=
atoi
(
p
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment