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
c7e57bc5
Commit
c7e57bc5
authored
Sep 06, 2022
by
Stefan Dösinger
Committed by
Alexandre Julliard
Sep 07, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include/test.h: Don't use \e.
Msvc does not support it.
parent
802016d0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
test.h
include/wine/test.h
+8
-8
No files found.
include/wine/test.h
View file @
c7e57bc5
...
@@ -300,14 +300,14 @@ const char *winetest_elapsed(void)
...
@@ -300,14 +300,14 @@ const char *winetest_elapsed(void)
return
wine_dbg_sprintf
(
"%.3f"
,
(
now
-
winetest_start_time
)
/
1000
.
0
);
return
wine_dbg_sprintf
(
"%.3f"
,
(
now
-
winetest_start_time
)
/
1000
.
0
);
}
}
static
const
char
color_reset
[]
=
"\
e
[0m"
;
static
const
char
color_reset
[]
=
"
\
x1b
[0m"
;
static
const
char
color_dark_red
[]
=
"\
e
[31m"
;
static
const
char
color_dark_red
[]
=
"
\
x1b
[31m"
;
static
const
char
color_dark_purple
[]
=
"\
e
[35m"
;
static
const
char
color_dark_purple
[]
=
"
\
x1b
[35m"
;
static
const
char
color_green
[]
=
"\
e
[32m"
;
static
const
char
color_green
[]
=
"
\
x1b
[32m"
;
static
const
char
color_yellow
[]
=
"\
e
[33m"
;
static
const
char
color_yellow
[]
=
"
\
x1b
[33m"
;
static
const
char
color_blue
[]
=
"\
e
[34m"
;
static
const
char
color_blue
[]
=
"
\
x1b
[34m"
;
static
const
char
color_bright_red
[]
=
"\
e
[1;91m"
;
static
const
char
color_bright_red
[]
=
"
\
x1b
[1;91m"
;
static
const
char
color_bright_purple
[]
=
"\
e
[1;95m"
;
static
const
char
color_bright_purple
[]
=
"
\
x1b
[1;95m"
;
static
void
winetest_printf
(
const
char
*
msg
,
...
)
__WINE_PRINTF_ATTR
(
1
,
2
);
static
void
winetest_printf
(
const
char
*
msg
,
...
)
__WINE_PRINTF_ATTR
(
1
,
2
);
static
void
winetest_printf
(
const
char
*
msg
,
...
)
static
void
winetest_printf
(
const
char
*
msg
,
...
)
...
...
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