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
b7917bcf
Commit
b7917bcf
authored
Jan 04, 2008
by
Hans Leidekker
Committed by
Alexandre Julliard
Jan 07, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Fix two test failures on Win98 due to missing GetTempPathW.
parent
4d84eb26
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
1 deletion
+12
-1
change.c
dlls/kernel32/tests/change.c
+12
-1
No files found.
dlls/kernel32/tests/change.c
View file @
b7917bcf
...
...
@@ -387,7 +387,13 @@ static void test_readdirectorychanges(void)
return
;
}
SetLastError
(
0xdeadbeef
);
r
=
GetTempPathW
(
MAX_PATH
,
path
);
if
(
!
r
&&
(
GetLastError
()
==
ERROR_CALL_NOT_IMPLEMENTED
))
{
skip
(
"GetTempPathW is not implemented
\n
"
);
return
;
}
ok
(
r
!=
0
,
"temp path failed
\n
"
);
if
(
!
r
)
return
;
...
...
@@ -600,8 +606,13 @@ static void test_readdirectorychanges_null(void)
skip
(
"ReadDirectoryChangesW is not available
\n
"
);
return
;
}
SetLastError
(
0xdeadbeef
);
r
=
GetTempPathW
(
MAX_PATH
,
path
);
if
(
!
r
&&
(
GetLastError
()
==
ERROR_CALL_NOT_IMPLEMENTED
))
{
skip
(
"GetTempPathW is not implemented
\n
"
);
return
;
}
ok
(
r
!=
0
,
"temp path failed
\n
"
);
if
(
!
r
)
return
;
...
...
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