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
84079a62
Commit
84079a62
authored
Nov 30, 2023
by
Eric Pouech
Committed by
Alexandre Julliard
Nov 30, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32/tests: Enable CreateProcess() tests on 64bit compilation.
Signed-off-by:
Eric Pouech
<
epouech@codeweavers.com
>
parent
a55598b1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
6 deletions
+0
-6
process.c
dlls/kernel32/tests/process.c
+0
-6
No files found.
dlls/kernel32/tests/process.c
View file @
84079a62
...
...
@@ -636,13 +636,11 @@ static void ok_child_int( int line, const char *sect, const char *key, UINT expe
ok_
(
__FILE__
,
line
)(
result
==
expect
,
"%s:%s expected %u, but got %u
\n
"
,
sect
,
key
,
expect
,
result
);
}
#ifndef _WIN64
static
void
ok_child_hexint
(
int
line
,
const
char
*
sect
,
const
char
*
key
,
UINT
expect
,
UINT
is_broken
)
{
UINT
result
=
GetPrivateProfileIntA
(
sect
,
key
,
!
expect
,
resfile
);
ok_
(
__FILE__
,
line
)(
result
==
expect
||
broken
(
is_broken
&&
result
==
is_broken
),
"%s:%s expected %#x, but got %#x
\n
"
,
sect
,
key
,
expect
,
result
);
}
#endif
#define okChildString(sect, key, expect) ok_child_string(__LINE__, (sect), (key), (expect), 1 )
#define okChildIString(sect, key, expect) ok_child_string(__LINE__, (sect), (key), (expect), 0 )
...
...
@@ -3107,7 +3105,6 @@ static void test_BreakawayOk(HANDLE parent_job)
ok
(
ret
,
"SetInformationJobObject error %lu
\n
"
,
GetLastError
());
}
#ifndef _WIN64
/* copy an executable, but changing its subsystem */
static
void
copy_change_subsystem
(
const
char
*
in
,
const
char
*
out
,
DWORD
subsyst
)
{
...
...
@@ -3215,7 +3212,6 @@ static BOOL build_startupinfo( STARTUPINFOA *startup, unsigned args, HANDLE hstd
}
return
needs_close
;
}
#endif
struct
std_handle_test
{
...
...
@@ -3229,7 +3225,6 @@ struct std_handle_test
static
void
test_StdHandleInheritance
(
void
)
{
#ifndef _WIN64
HANDLE
hsavestd
[
3
];
static
char
guiexec
[
MAX_PATH
];
static
char
cuiexec
[
MAX_PATH
];
...
...
@@ -3344,7 +3339,6 @@ static void test_StdHandleInheritance(void)
SetStdHandle
(
STD_INPUT_HANDLE
,
hsavestd
[
0
]);
SetStdHandle
(
STD_OUTPUT_HANDLE
,
hsavestd
[
1
]);
SetStdHandle
(
STD_ERROR_HANDLE
,
hsavestd
[
2
]);
#endif
}
#if defined(__i386__) || defined(__x86_64__)
...
...
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