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
853d0f34
Commit
853d0f34
authored
Jul 06, 2015
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcirt/tests: Fix comparison with EOL.
parent
c023558b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
msvcirt.c
dlls/msvcirt/tests/msvcirt.c
+1
-1
No files found.
dlls/msvcirt/tests/msvcirt.c
View file @
853d0f34
...
...
@@ -700,7 +700,7 @@ static void test_streambuf(void)
ret
=
(
int
)
call_func2
(
p_streambuf_pbackfail
,
&
sb
,
EOF
);
ok
(
ret
==
EOF
,
"expected EOF got '%c'
\n
"
,
ret
);
ok
(
sb
.
gptr
==
sb
.
eback
+
1
,
"wrong get pointer, expected %p got %p
\n
"
,
sb
.
eback
+
1
,
sb
.
gptr
);
ok
(
*
sb
.
gptr
==
EOF
,
"expected EOF in the get area, got %c
\n
"
,
*
sb
.
gptr
);
ok
(
(
signed
char
)
*
sb
.
gptr
==
EOF
,
"expected EOF in the get area, got %c
\n
"
,
*
sb
.
gptr
);
sb
.
gptr
=
sb
.
eback
;
ret
=
(
int
)
call_func2
(
p_streambuf_pbackfail
,
&
sb
,
'Z'
);
ok
(
ret
==
EOF
,
"expected EOF got '%c'
\n
"
,
ret
);
...
...
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