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
fc4d5393
Commit
fc4d5393
authored
Aug 01, 2010
by
Andrey Turkin
Committed by
Alexandre Julliard
Aug 02, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll/tests: Do not check signedness for char types.
parent
cb2ce2f3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
generated.c
dlls/ntdll/tests/generated.c
+0
-4
winapi_test
tools/winapi/winapi_test
+4
-0
No files found.
dlls/ntdll/tests/generated.c
View file @
fc4d5393
...
...
@@ -375,7 +375,6 @@ static void test_pack_CCHAR(void)
/* CCHAR */
TEST_TYPE_SIZE
(
CCHAR
,
1
)
TEST_TYPE_ALIGN
(
CCHAR
,
1
)
TEST_TYPE_SIGNED
(
CCHAR
)
}
static
void
test_pack_CHAR
(
void
)
...
...
@@ -383,7 +382,6 @@ static void test_pack_CHAR(void)
/* CHAR */
TEST_TYPE_SIZE
(
CHAR
,
1
)
TEST_TYPE_ALIGN
(
CHAR
,
1
)
TEST_TYPE_SIGNED
(
CHAR
)
}
static
void
test_pack_DWORDLONG
(
void
)
...
...
@@ -3786,7 +3784,6 @@ static void test_pack_CCHAR(void)
/* CCHAR */
TEST_TYPE_SIZE
(
CCHAR
,
1
)
TEST_TYPE_ALIGN
(
CCHAR
,
1
)
TEST_TYPE_SIGNED
(
CCHAR
)
}
static
void
test_pack_CHAR
(
void
)
...
...
@@ -3794,7 +3791,6 @@ static void test_pack_CHAR(void)
/* CHAR */
TEST_TYPE_SIZE
(
CHAR
,
1
)
TEST_TYPE_ALIGN
(
CHAR
,
1
)
TEST_TYPE_SIGNED
(
CHAR
)
}
static
void
test_pack_DWORDLONG
(
void
)
...
...
tools/winapi/winapi_test
View file @
fc4d5393
...
...
@@ -177,6 +177,10 @@ sub _find_align_kind_size($) {
$align
=
$pointer_size
;
$kind
=
"pointer"
;
$size
=
$pointer_size
;
}
elsif
(
/^char$/
)
{
$align
=
1
;
$kind
=
"char"
;
$size
=
1
;
}
elsif
(
/^(?:(signed|unsigned)\s+)?(?:__int8|char|byte)$/
)
{
$align
=
1
;
$kind
=
defined
(
$1
)
?
$1
:
"signed"
;
...
...
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