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
0c67d1bd
Commit
0c67d1bd
authored
Dec 04, 2009
by
Paul Vriens
Committed by
Alexandre Julliard
Dec 04, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32/tests: Skip some tests on Win98/WinMe.
parent
3b43c4e5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
path.c
dlls/kernel32/tests/path.c
+7
-0
No files found.
dlls/kernel32/tests/path.c
View file @
0c67d1bd
...
...
@@ -986,7 +986,14 @@ static void test_GetLongPathNameA(void)
lstrcatA
(
temppath2
,
tempfile
);
explength
=
length
+
4
;
SetLastError
(
0xdeadbeef
);
length
=
pGetLongPathNameA
(
temppath2
,
NULL
,
0
);
if
(
length
==
0
&&
GetLastError
()
==
ERROR_BAD_NET_NAME
)
{
win_skip
(
"UNC syntax tests don't work on Win98/WinMe
\n
"
);
DeleteFileA
(
tempfile
);
return
;
}
ok
(
length
==
explength
,
"Wrong length %d, expected %d
\n
"
,
length
,
explength
);
length
=
pGetLongPathNameA
(
temppath2
,
NULL
,
MAX_PATH
);
...
...
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