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
4685e88d
Commit
4685e88d
authored
May 30, 2019
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt/tests: Don't use win_skip for functions that are not exported on 64-bit.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
ca8b7cf3
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
7 deletions
+6
-7
data.c
dlls/msvcrt/tests/data.c
+1
-2
environ.c
dlls/msvcrt/tests/environ.c
+2
-2
locale.c
dlls/msvcrt/tests/locale.c
+1
-1
time.c
dlls/msvcrt/tests/time.c
+2
-2
No files found.
dlls/msvcrt/tests/data.c
View file @
4685e88d
...
...
@@ -153,9 +153,8 @@ static void test___getmainargs(void)
new_argv
=
*
p___p___argv
();
ok
(
new_argc
==
4
,
"*__p___argc() = %d
\n
"
,
new_argc
);
ok
(
new_argv
==
argv
,
"*__p___argv() = %p, expected %p
\n
"
,
new_argv
,
argv
);
}
else
{
win_skip
(
"__p___argc or __p___argv is not available
\n
"
);
}
else
skip
(
"__p___argc or __p___argv is not available
\n
"
);
mode
=
0
;
__getmainargs
(
&
argc
,
&
argv
,
&
envp
,
1
,
&
mode
);
...
...
dlls/msvcrt/tests/environ.c
View file @
4685e88d
...
...
@@ -97,7 +97,7 @@ static void test__environ(void)
"Expected _environ pointers to be identical
\n
"
);
}
else
win_
skip
(
"__p__environ() is not available
\n
"
);
skip
(
"__p__environ() is not available
\n
"
);
if
(
p_get_environ
)
{
...
...
@@ -163,7 +163,7 @@ static void test__wenviron(void)
"Expected _wenviron pointers to be NULL
\n
"
);
}
else
win_
skip
(
"__p__wenviron() is not available
\n
"
);
skip
(
"__p__wenviron() is not available
\n
"
);
if
(
p_get_wenviron
)
{
...
...
dlls/msvcrt/tests/locale.c
View file @
4685e88d
...
...
@@ -759,7 +759,7 @@ static void test___mb_cur_max_func(void)
/* for older Windows */
if
(
!
p__p___mb_cur_max
)
win_
skip
(
"Skipping __p___mb_cur_max tests
\n
"
);
skip
(
"Skipping __p___mb_cur_max tests
\n
"
);
else
{
mb_cur_max
=
*
p__p___mb_cur_max
();
ok
(
mb_cur_max
==
1
,
"mb_cur_max = %d, expected 1
\n
"
,
mb_cur_max
);
...
...
dlls/msvcrt/tests/time.c
View file @
4685e88d
...
...
@@ -577,7 +577,7 @@ static void test_daylight(void)
if
(
!
p___p__daylight
)
{
win_
skip
(
"__p__daylight not available
\n
"
);
skip
(
"__p__daylight not available
\n
"
);
return
;
}
...
...
@@ -829,7 +829,7 @@ static void test__tzset(void)
int
ret
;
if
(
!
p___p__daylight
||
!
p___p__timezone
||
!
p___p__dstbias
)
{
win_
skip
(
"__p__daylight, __p__timezone or __p__dstbias is not available
\n
"
);
skip
(
"__p__daylight, __p__timezone or __p__dstbias is not available
\n
"
);
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