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
11dce800
Commit
11dce800
authored
Jan 18, 2010
by
Andrew Nguyen
Committed by
Alexandre Julliard
Jan 18, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32/tests: Add tests for IsBadCodePtr.
parent
5b9730c4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
5 deletions
+14
-5
virtual.c
dlls/kernel32/tests/virtual.c
+14
-5
No files found.
dlls/kernel32/tests/virtual.c
View file @
11dce800
...
...
@@ -922,11 +922,20 @@ static void test_IsBadWritePtr(void)
ok
(
ret
==
FALSE
,
"Expected IsBadWritePtr to return FALSE, got %d
\n
"
,
ret
);
}
static
void
test_
Bad
Ptr
(
void
)
static
void
test_
IsBadCode
Ptr
(
void
)
{
void
*
ptr
=
(
void
*
)
1
;
/* We assume address 1 is not mapped. */
ok
(
IsBadCodePtr
(
ptr
),
"IsBadCodePtr(1) failed.
\n
"
);
BOOL
ret
;
void
*
ptr
=
(
void
*
)
0xdeadbeef
;
char
stackval
;
ret
=
IsBadCodePtr
(
NULL
);
ok
(
ret
==
TRUE
,
"Expected IsBadCodePtr to return TRUE, got %d
\n
"
,
ret
);
ret
=
IsBadCodePtr
(
ptr
);
ok
(
ret
==
TRUE
,
"Expected IsBadCodePtr to return TRUE, got %d
\n
"
,
ret
);
ret
=
IsBadCodePtr
((
void
*
)
&
stackval
);
ok
(
ret
==
FALSE
,
"Expected IsBadCodePtr to return FALSE, got %d
\n
"
,
ret
);
}
static
void
test_write_watch
(
void
)
...
...
@@ -1270,6 +1279,6 @@ START_TEST(virtual)
test_CreateFileMapping
();
test_IsBadReadPtr
();
test_IsBadWritePtr
();
test_
Bad
Ptr
();
test_
IsBadCode
Ptr
();
test_write_watch
();
}
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