Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
7626e5ec
Commit
7626e5ec
authored
Aug 21, 2007
by
Paul Vriens
Committed by
Alexandre Julliard
Aug 21, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32/tests: Skip some not implemented functions and add a few skip's.
parent
f581a1cb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
0 deletions
+18
-0
change.c
dlls/kernel32/tests/change.c
+18
-0
No files found.
dlls/kernel32/tests/change.c
View file @
7626e5ec
...
...
@@ -256,7 +256,13 @@ static void test_ffcn(void)
static
const
WCHAR
szBoo
[]
=
{
'\\'
,
'b'
,
'o'
,
'o'
,
0
};
static
const
WCHAR
szHoo
[]
=
{
'\\'
,
'h'
,
'o'
,
'o'
,
0
};
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
;
...
...
@@ -376,7 +382,10 @@ static void test_readdirectorychanges(void)
PFILE_NOTIFY_INFORMATION
pfni
;
if
(
!
pReadDirectoryChangesW
)
{
skip
(
"ReadDirectoryChangesW is not available
\n
"
);
return
;
}
r
=
GetTempPathW
(
MAX_PATH
,
path
);
ok
(
r
!=
0
,
"temp path failed
\n
"
);
...
...
@@ -587,7 +596,10 @@ static void test_readdirectorychanges_null(void)
PFILE_NOTIFY_INFORMATION
pfni
;
if
(
!
pReadDirectoryChangesW
)
{
skip
(
"ReadDirectoryChangesW is not available
\n
"
);
return
;
}
r
=
GetTempPathW
(
MAX_PATH
,
path
);
ok
(
r
!=
0
,
"temp path failed
\n
"
);
...
...
@@ -678,7 +690,13 @@ static void test_readdirectorychanges_filedir(void)
static
const
WCHAR
szFoo
[]
=
{
'\\'
,
'f'
,
'o'
,
'o'
,
0
};
PFILE_NOTIFY_INFORMATION
pfni
;
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