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
4b1479c9
Commit
4b1479c9
authored
Dec 18, 2002
by
Francois Gouget
Committed by
Alexandre Julliard
Dec 18, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improve error reporting.
parent
52614c62
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
58 additions
and
58 deletions
+58
-58
format_msg.c
dlls/kernel/tests/format_msg.c
+58
-58
No files found.
dlls/kernel/tests/format_msg.c
View file @
4b1479c9
...
...
@@ -44,177 +44,177 @@ void test_message_from_string(void)
/* the basics */
r
=
FormatMessageA
(
FORMAT_MESSAGE_FROM_STRING
,
"test"
,
0
,
0
,
out
,
sizeof
out
/
sizeof
(
CHAR
),
NULL
);
ok
(
!
strcmp
(
"test"
,
out
),
"failed
"
);
ok
(
r
==
4
,
"failed
"
);
ok
(
!
strcmp
(
"test"
,
out
),
"failed
out=[%s]"
,
out
);
ok
(
r
==
4
,
"failed
: r=%ld"
,
r
);
/* using the format feature */
r
=
doit
(
FORMAT_MESSAGE_FROM_STRING
,
"%1!s!"
,
0
,
0
,
out
,
sizeof
out
/
sizeof
(
CHAR
),
"test"
);
ok
(
!
strcmp
(
"test"
,
out
),
"failed
"
);
ok
(
r
==
4
,
"failed
"
);
ok
(
!
strcmp
(
"test"
,
out
),
"failed
out=[%s]"
,
out
);
ok
(
r
==
4
,
"failed
: r=%ld"
,
r
);
/* no format */
r
=
doit
(
FORMAT_MESSAGE_FROM_STRING
,
"%1"
,
0
,
0
,
out
,
sizeof
out
/
sizeof
(
CHAR
),
"test"
);
ok
(
!
strcmp
(
"test"
,
out
),
"failed
"
);
ok
(
r
==
4
,
"failed
"
);
ok
(
!
strcmp
(
"test"
,
out
),
"failed
out=[%s]"
,
out
);
ok
(
r
==
4
,
"failed
: r=%ld"
,
r
);
/* two pieces */
r
=
doit
(
FORMAT_MESSAGE_FROM_STRING
,
"%1%2"
,
0
,
0
,
out
,
sizeof
out
/
sizeof
(
CHAR
),
"te"
,
"st"
);
ok
(
!
strcmp
(
"test"
,
out
),
"failed
"
);
ok
(
r
==
4
,
"failed
"
);
ok
(
!
strcmp
(
"test"
,
out
),
"failed
out=[%s]"
,
out
);
ok
(
r
==
4
,
"failed
: r=%ld"
,
r
);
/* three pieces */
r
=
doit
(
FORMAT_MESSAGE_FROM_STRING
,
"%1%3%2%1"
,
0
,
0
,
out
,
sizeof
out
/
sizeof
(
CHAR
),
"t"
,
"s"
,
"e"
);
ok
(
!
strcmp
(
"test"
,
out
),
"failed
"
);
ok
(
r
==
4
,
"failed
"
);
ok
(
!
strcmp
(
"test"
,
out
),
"failed
out=[%s]"
,
out
);
ok
(
r
==
4
,
"failed
: r=%ld"
,
r
);
/* s doesn't seem to work in format strings */
r
=
doit
(
FORMAT_MESSAGE_FROM_STRING
,
"%!s!"
,
0
,
0
,
out
,
sizeof
out
/
sizeof
(
CHAR
),
"test"
);
ok
(
!
strcmp
(
"!s!"
,
out
),
"failed
"
);
ok
(
r
==
3
,
"failed
"
);
ok
(
!
strcmp
(
"!s!"
,
out
),
"failed
out=[%s]"
,
out
);
ok
(
r
==
3
,
"failed
: r=%ld"
,
r
);
/* S is unicode */
r
=
doit
(
FORMAT_MESSAGE_FROM_STRING
,
"%1!S!"
,
0
,
0
,
out
,
sizeof
out
/
sizeof
(
CHAR
),
szwTest
);
ok
(
!
strcmp
(
"test"
,
out
),
"failed
"
);
ok
(
r
==
4
,
"failed
"
);
ok
(
!
strcmp
(
"test"
,
out
),
"failed
out=[%s]"
,
out
);
ok
(
r
==
4
,
"failed
: r=%ld"
,
r
);
/* as characters */
r
=
doit
(
FORMAT_MESSAGE_FROM_STRING
,
"%1!c!%2!c!%3!c!%1!c!"
,
0
,
0
,
out
,
sizeof
out
/
sizeof
(
CHAR
),
't'
,
'e'
,
's'
);
ok
(
!
strcmp
(
"test"
,
out
),
"failed
"
);
ok
(
r
==
4
,
"failed
"
);
ok
(
!
strcmp
(
"test"
,
out
),
"failed
out=[%s]"
,
out
);
ok
(
r
==
4
,
"failed
: r=%ld"
,
r
);
/* some numbers */
r
=
doit
(
FORMAT_MESSAGE_FROM_STRING
,
"%1!d!%2!d!%3!d!"
,
0
,
0
,
out
,
sizeof
out
/
sizeof
(
CHAR
),
1
,
2
,
3
);
ok
(
!
strcmp
(
"123"
,
out
),
"failed
"
);
ok
(
r
==
3
,
"failed
"
);
ok
(
!
strcmp
(
"123"
,
out
),
"failed
out=[%s]"
,
out
);
ok
(
r
==
3
,
"failed
: r=%ld"
,
r
);
/* a single digit with some spacing */
r
=
doit
(
FORMAT_MESSAGE_FROM_STRING
,
"%1!4d!"
,
0
,
0
,
out
,
sizeof
out
/
sizeof
(
CHAR
),
1
);
ok
(
!
strcmp
(
" 1"
,
out
),
"failed
"
);
ok
(
r
==
4
,
"failed
"
);
ok
(
!
strcmp
(
" 1"
,
out
),
"failed
out=[%s]"
,
out
);
ok
(
r
==
4
,
"failed
: r=%ld"
,
r
);
/* a single digit, left justified */
r
=
doit
(
FORMAT_MESSAGE_FROM_STRING
,
"%1!-4d!"
,
0
,
0
,
out
,
sizeof
out
/
sizeof
(
CHAR
),
1
);
ok
(
!
strcmp
(
"1 "
,
out
),
"failed
"
);
ok
(
r
==
4
,
"failed
"
);
ok
(
!
strcmp
(
"1 "
,
out
),
"failed
out=[%s]"
,
out
);
ok
(
r
==
4
,
"failed
: r=%ld"
,
r
);
/* two digit decimal number */
r
=
doit
(
FORMAT_MESSAGE_FROM_STRING
,
"%1!4d!"
,
0
,
0
,
out
,
sizeof
out
/
sizeof
(
CHAR
),
11
);
ok
(
!
strcmp
(
" 11"
,
out
),
"failed
"
);
ok
(
r
==
4
,
"failed
"
);
ok
(
!
strcmp
(
" 11"
,
out
),
"failed
out=[%s]"
,
out
);
ok
(
r
==
4
,
"failed
: r=%ld"
,
r
);
/* a hex number */
r
=
doit
(
FORMAT_MESSAGE_FROM_STRING
,
"%1!4x!"
,
0
,
0
,
out
,
sizeof
out
/
sizeof
(
CHAR
),
11
);
ok
(
!
strcmp
(
" b"
,
out
),
"failed
"
);
ok
(
r
==
4
,
"failed
"
);
ok
(
!
strcmp
(
" b"
,
out
),
"failed
out=[%s]"
,
out
);
ok
(
r
==
4
,
"failed
: r=%ld"
,
r
);
/* a hex number, upper case */
r
=
doit
(
FORMAT_MESSAGE_FROM_STRING
,
"%1!4X!"
,
0
,
0
,
out
,
sizeof
out
/
sizeof
(
CHAR
),
11
);
ok
(
!
strcmp
(
" B"
,
out
),
"failed
"
);
ok
(
r
==
4
,
"failed
"
);
ok
(
!
strcmp
(
" B"
,
out
),
"failed
out=[%s]"
,
out
);
ok
(
r
==
4
,
"failed
: r=%ld"
,
r
);
/* a hex number, upper case, left justified */
r
=
doit
(
FORMAT_MESSAGE_FROM_STRING
,
"%1!-4X!"
,
0
,
0
,
out
,
sizeof
out
/
sizeof
(
CHAR
),
11
);
ok
(
!
strcmp
(
"B "
,
out
),
"failed
"
);
ok
(
r
==
4
,
"failed
"
);
ok
(
!
strcmp
(
"B "
,
out
),
"failed
out=[%s]"
,
out
);
ok
(
r
==
4
,
"failed
: r=%ld"
,
r
);
/* a long hex number, upper case */
r
=
doit
(
FORMAT_MESSAGE_FROM_STRING
,
"%1!4X!"
,
0
,
0
,
out
,
sizeof
out
/
sizeof
(
CHAR
),
0x1ab
);
ok
(
!
strcmp
(
" 1AB"
,
out
),
"failed
"
);
ok
(
r
==
4
,
"failed
"
);
ok
(
!
strcmp
(
" 1AB"
,
out
),
"failed
out=[%s]"
,
out
);
ok
(
r
==
4
,
"failed
: r=%ld"
,
r
);
/* two percent... */
r
=
doit
(
FORMAT_MESSAGE_FROM_STRING
,
" %%%% "
,
0
,
0
,
out
,
sizeof
out
/
sizeof
(
CHAR
));
ok
(
!
strcmp
(
" %% "
,
out
),
"failed
"
);
ok
(
r
==
4
,
"failed
"
);
ok
(
!
strcmp
(
" %% "
,
out
),
"failed
out=[%s]"
,
out
);
ok
(
r
==
4
,
"failed
: r=%ld"
,
r
);
/* periods are special cases */
r
=
doit
(
FORMAT_MESSAGE_FROM_STRING
,
" %.%. %1!d!"
,
0
,
0
,
out
,
sizeof
out
/
sizeof
(
CHAR
),
0x1ab
);
ok
(
!
strcmp
(
" .. 427"
,
out
),
"failed
"
);
ok
(
r
==
7
,
"failed
"
);
ok
(
!
strcmp
(
" .. 427"
,
out
),
"failed
out=[%s]"
,
out
);
ok
(
r
==
7
,
"failed
: r=%ld"
,
r
);
/* %0 ends the line */
r
=
doit
(
FORMAT_MESSAGE_FROM_STRING
,
"test%0test"
,
0
,
0
,
out
,
sizeof
out
/
sizeof
(
CHAR
));
ok
(
!
strcmp
(
"test"
,
out
),
"failed
"
);
ok
(
r
==
4
,
"failed
"
);
ok
(
!
strcmp
(
"test"
,
out
),
"failed
out=[%s]"
,
out
);
ok
(
r
==
4
,
"failed
: r=%ld"
,
r
);
/* %! prints an exclaimation */
r
=
doit
(
FORMAT_MESSAGE_FROM_STRING
,
"yah%!%0 "
,
0
,
0
,
out
,
sizeof
out
/
sizeof
(
CHAR
));
ok
(
!
strcmp
(
"yah!"
,
out
),
"failed
"
);
ok
(
r
==
4
,
"failed
"
);
ok
(
!
strcmp
(
"yah!"
,
out
),
"failed
out=[%s]"
,
out
);
ok
(
r
==
4
,
"failed
: r=%ld"
,
r
);
/* %space */
r
=
doit
(
FORMAT_MESSAGE_FROM_STRING
,
"% % "
,
0
,
0
,
out
,
sizeof
out
/
sizeof
(
CHAR
));
ok
(
!
strcmp
(
" "
,
out
),
"failed
"
);
ok
(
r
==
4
,
"failed
"
);
ok
(
!
strcmp
(
" "
,
out
),
"failed
out=[%s]"
,
out
);
ok
(
r
==
4
,
"failed
: r=%ld"
,
r
);
/* line feed */
r
=
doit
(
FORMAT_MESSAGE_FROM_STRING
,
"hi
\n
"
,
0
,
0
,
out
,
sizeof
out
/
sizeof
(
CHAR
));
ok
(
!
strcmp
(
"hi
\r\n
"
,
out
),
"failed
"
);
ok
(
r
==
4
,
"failed
"
);
ok
(
!
strcmp
(
"hi
\r\n
"
,
out
),
"failed
out=[%s]"
,
out
);
ok
(
r
==
4
,
"failed
: r=%ld"
,
r
);
/* carriage return line feed */
r
=
doit
(
FORMAT_MESSAGE_FROM_STRING
,
"hi
\r\n
"
,
0
,
0
,
out
,
sizeof
out
/
sizeof
(
CHAR
));
ok
(
!
strcmp
(
"hi
\r\n
"
,
out
),
"failed
"
);
ok
(
r
==
4
,
"failed
"
);
ok
(
!
strcmp
(
"hi
\r\n
"
,
out
),
"failed
out=[%s]"
,
out
);
ok
(
r
==
4
,
"failed
: r=%ld"
,
r
);
/* carriage return line feed */
r
=
doit
(
FORMAT_MESSAGE_FROM_STRING
,
"
\r
"
,
0
,
0
,
out
,
sizeof
out
/
sizeof
(
CHAR
));
ok
(
!
strcmp
(
"
\r\n
"
,
out
),
"failed
"
);
ok
(
r
==
2
,
"failed
"
);
ok
(
!
strcmp
(
"
\r\n
"
,
out
),
"failed
out=[%s]"
,
out
);
ok
(
r
==
2
,
"failed
: r=%ld"
,
r
);
/* carriage return line feed */
r
=
doit
(
FORMAT_MESSAGE_FROM_STRING
,
"
\r\r\n
"
,
0
,
0
,
out
,
sizeof
out
/
sizeof
(
CHAR
));
ok
(
!
strcmp
(
"
\r\n\r\n
"
,
out
),
"failed
"
);
ok
(
r
==
4
,
"failed
"
);
ok
(
!
strcmp
(
"
\r\n\r\n
"
,
out
),
"failed
out=[%s]"
,
out
);
ok
(
r
==
4
,
"failed
: r=%ld"
,
r
);
/* change of pace... test the low byte of dwflags */
/* line feed */
r
=
doit
(
FORMAT_MESSAGE_FROM_STRING
|
FORMAT_MESSAGE_MAX_WIDTH_MASK
,
"hi
\n
"
,
0
,
0
,
out
,
sizeof
out
/
sizeof
(
CHAR
));
ok
(
!
strcmp
(
"hi "
,
out
),
"failed
"
);
ok
(
r
==
3
,
"failed
"
);
ok
(
!
strcmp
(
"hi "
,
out
),
"failed
out=[%s]"
,
out
);
ok
(
r
==
3
,
"failed
: r=%ld"
,
r
);
/* carriage return line feed */
r
=
doit
(
FORMAT_MESSAGE_FROM_STRING
|
FORMAT_MESSAGE_MAX_WIDTH_MASK
,
"hi
\r\n
"
,
0
,
0
,
out
,
sizeof
out
/
sizeof
(
CHAR
));
ok
(
!
strcmp
(
"hi "
,
out
),
"failed
"
);
ok
(
r
==
3
,
"failed
"
);
ok
(
!
strcmp
(
"hi "
,
out
),
"failed
out=[%s]"
,
out
);
ok
(
r
==
3
,
"failed
: r=%ld"
,
r
);
/* carriage return line feed */
r
=
doit
(
FORMAT_MESSAGE_FROM_STRING
|
FORMAT_MESSAGE_MAX_WIDTH_MASK
,
"
\r
"
,
0
,
0
,
out
,
sizeof
out
/
sizeof
(
CHAR
));
ok
(
!
strcmp
(
" "
,
out
),
"failed
"
);
ok
(
r
==
1
,
"failed
"
);
ok
(
!
strcmp
(
" "
,
out
),
"failed
out=[%s]"
,
out
);
ok
(
r
==
1
,
"failed
: r=%ld"
,
r
);
/* carriage return line feed */
r
=
doit
(
FORMAT_MESSAGE_FROM_STRING
|
FORMAT_MESSAGE_MAX_WIDTH_MASK
,
"
\r\r\n
"
,
0
,
0
,
out
,
sizeof
out
/
sizeof
(
CHAR
));
ok
(
!
strcmp
(
" "
,
out
),
"failed
"
);
ok
(
r
==
2
,
"failed
"
);
ok
(
!
strcmp
(
" "
,
out
),
"failed
out=[%s]"
,
out
);
ok
(
r
==
2
,
"failed
: r=%ld"
,
r
);
}
START_TEST
(
format_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