Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
98e50f9e
Commit
98e50f9e
authored
Feb 12, 2020
by
Francois Gouget
Committed by
Alexandre Julliard
Feb 12, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tests: Restore the colon in the todo, skip and trace lines.
Signed-off-by:
Francois Gouget
<
fgouget@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
61d0cc78
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
test.h
include/wine/test.h
+3
-3
No files found.
include/wine/test.h
View file @
98e50f9e
...
@@ -346,7 +346,7 @@ int winetest_vok( int condition, const char *msg, __winetest_va_list args )
...
@@ -346,7 +346,7 @@ int winetest_vok( int condition, const char *msg, __winetest_va_list args )
{
{
if
(
winetest_debug
>
0
)
if
(
winetest_debug
>
0
)
{
{
printf
(
"%s:%d Test marked todo: "
,
printf
(
"%s:%d
:
Test marked todo: "
,
data
->
current_file
,
data
->
current_line
);
data
->
current_file
,
data
->
current_line
);
vprintf
(
msg
,
args
);
vprintf
(
msg
,
args
);
}
}
...
@@ -396,7 +396,7 @@ void __winetest_cdecl winetest_trace( const char *msg, ... )
...
@@ -396,7 +396,7 @@ void __winetest_cdecl winetest_trace( const char *msg, ... )
if
(
winetest_add_line
()
<
winetest_mute_threshold
)
if
(
winetest_add_line
()
<
winetest_mute_threshold
)
{
{
struct
tls_data
*
data
=
get_tls_data
();
struct
tls_data
*
data
=
get_tls_data
();
printf
(
"%s:%d "
,
data
->
current_file
,
data
->
current_line
);
printf
(
"%s:%d
:
"
,
data
->
current_file
,
data
->
current_line
);
__winetest_va_start
(
valist
,
msg
);
__winetest_va_start
(
valist
,
msg
);
vprintf
(
msg
,
valist
);
vprintf
(
msg
,
valist
);
__winetest_va_end
(
valist
);
__winetest_va_end
(
valist
);
...
@@ -410,7 +410,7 @@ void winetest_vskip( const char *msg, __winetest_va_list args )
...
@@ -410,7 +410,7 @@ void winetest_vskip( const char *msg, __winetest_va_list args )
if
(
winetest_add_line
()
<
winetest_mute_threshold
)
if
(
winetest_add_line
()
<
winetest_mute_threshold
)
{
{
struct
tls_data
*
data
=
get_tls_data
();
struct
tls_data
*
data
=
get_tls_data
();
printf
(
"%s:%d Tests skipped: "
,
data
->
current_file
,
data
->
current_line
);
printf
(
"%s:%d
:
Tests skipped: "
,
data
->
current_file
,
data
->
current_line
);
vprintf
(
msg
,
args
);
vprintf
(
msg
,
args
);
InterlockedIncrement
(
&
skipped
);
InterlockedIncrement
(
&
skipped
);
}
}
...
...
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