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
dda38adc
Commit
dda38adc
authored
Oct 22, 2008
by
Paul Vriens
Committed by
Alexandre Julliard
Oct 22, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32/tests: Fix a few failures on win9x and winme.
parent
46d79b03
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
volume.c
dlls/kernel32/tests/volume.c
+3
-1
No files found.
dlls/kernel32/tests/volume.c
View file @
dda38adc
...
...
@@ -165,7 +165,9 @@ static void test_GetLogicalDriveStringsA(void)
ok
(
size2
==
size
-
1
,
"size2 = %d
\n
"
,
size2
);
for
(
ptr
=
buf
;
ptr
<
buf
+
size2
;
ptr
+=
4
)
{
ok
(
'A'
<=
*
ptr
&&
*
ptr
<=
'Z'
,
"device name '%c' is not uppercase
\n
"
,
*
ptr
);
ok
((
'A'
<=
*
ptr
&&
*
ptr
<=
'Z'
)
||
(
broken
(
'a'
<=
*
ptr
&&
*
ptr
<=
'z'
)),
/* Win9x and WinMe */
"device name '%c' is not uppercase
\n
"
,
*
ptr
);
ok
(
ptr
[
1
]
==
':'
,
"ptr[1] = %c, expected ':'
\n
"
,
ptr
[
1
]);
ok
(
ptr
[
2
]
==
'\\'
,
"ptr[2] = %c expected '
\\
'
\n
"
,
ptr
[
2
]);
ok
(
!
ptr
[
3
],
"ptr[3] = %c expected nullbyte
\n
"
,
ptr
[
3
]);
...
...
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