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
e314ef69
Commit
e314ef69
authored
Apr 10, 2008
by
James Hawkins
Committed by
Alexandre Julliard
Apr 11, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Add traces to see why the tests fail in win2k.
parent
bfaed5e7
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
environ.c
dlls/kernel32/tests/environ.c
+4
-0
No files found.
dlls/kernel32/tests/environ.c
View file @
e314ef69
...
...
@@ -359,6 +359,7 @@ static void test_GetComputerName(void)
ret
=
pGetComputerNameExA
(
ComputerNameDnsDomain
,
(
LPSTR
)
0xdeadbeef
,
&
size
);
error
=
GetLastError
();
ok
(
!
ret
&&
error
==
ERROR_MORE_DATA
,
"GetComputerNameExA should have failed with ERROR_MORE_DATA instead of %d
\n
"
,
error
);
trace
(
"domain size is %d
\n
"
,
size
);
name
=
HeapAlloc
(
GetProcessHeap
(),
0
,
size
*
sizeof
(
name
[
0
]));
ok
(
name
!=
NULL
,
"HeapAlloc failed with error %d
\n
"
,
GetLastError
());
ret
=
pGetComputerNameExA
(
ComputerNameDnsDomain
,
name
,
&
size
);
...
...
@@ -370,6 +371,7 @@ static void test_GetComputerName(void)
ret
=
pGetComputerNameExA
(
ComputerNameDnsFullyQualified
,
(
LPSTR
)
0xdeadbeef
,
&
size
);
error
=
GetLastError
();
ok
(
!
ret
&&
error
==
ERROR_MORE_DATA
,
"GetComputerNameExA should have failed with ERROR_MORE_DATA instead of %d
\n
"
,
error
);
trace
(
"fully qualified hostname size is %d
\n
"
,
size
);
name
=
HeapAlloc
(
GetProcessHeap
(),
0
,
size
*
sizeof
(
name
[
0
]));
ok
(
name
!=
NULL
,
"HeapAlloc failed with error %d
\n
"
,
GetLastError
());
ret
=
pGetComputerNameExA
(
ComputerNameDnsFullyQualified
,
name
,
&
size
);
...
...
@@ -381,6 +383,7 @@ static void test_GetComputerName(void)
ret
=
pGetComputerNameExA
(
ComputerNameDnsHostname
,
(
LPSTR
)
0xdeadbeef
,
&
size
);
error
=
GetLastError
();
ok
(
!
ret
&&
error
==
ERROR_MORE_DATA
,
"GetComputerNameExA should have failed with ERROR_MORE_DATA instead of %d
\n
"
,
error
);
trace
(
"hostname size is %d
\n
"
,
size
);
name
=
HeapAlloc
(
GetProcessHeap
(),
0
,
size
*
sizeof
(
name
[
0
]));
ok
(
name
!=
NULL
,
"HeapAlloc failed with error %d
\n
"
,
GetLastError
());
ret
=
pGetComputerNameExA
(
ComputerNameDnsHostname
,
name
,
&
size
);
...
...
@@ -392,6 +395,7 @@ static void test_GetComputerName(void)
ret
=
pGetComputerNameExA
(
ComputerNameNetBIOS
,
(
LPSTR
)
0xdeadbeef
,
&
size
);
error
=
GetLastError
();
ok
(
!
ret
&&
error
==
ERROR_MORE_DATA
,
"GetComputerNameExA should have failed with ERROR_MORE_DATA instead of %d
\n
"
,
error
);
trace
(
"NetBIOS size is %d
\n
"
,
size
);
name
=
HeapAlloc
(
GetProcessHeap
(),
0
,
size
*
sizeof
(
name
[
0
]));
ok
(
name
!=
NULL
,
"HeapAlloc failed with error %d
\n
"
,
GetLastError
());
ret
=
pGetComputerNameExA
(
ComputerNameNetBIOS
,
name
,
&
size
);
...
...
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