Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-fonts
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
Aleksandr Isakov
wine-fonts
Commits
b22fa89d
Commit
b22fa89d
authored
Nov 24, 2015
by
Nikolay Sivov
Committed by
Alexandre Julliard
Nov 25, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winmm/tests: Remove unreliable tests.
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
a360cc47
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
8 deletions
+0
-8
capture.c
dlls/winmm/tests/capture.c
+0
-4
wave.c
dlls/winmm/tests/wave.c
+0
-4
No files found.
dlls/winmm/tests/capture.c
View file @
b22fa89d
...
...
@@ -316,7 +316,6 @@ static void wave_in_test_device(UINT_PTR device)
GetSystemInfo
(
&
sSysInfo
);
dwPageSize
=
sSysInfo
.
dwPageSize
;
memset
(
&
capsA
,
0xff
,
sizeof
(
capsA
));
rc
=
waveInGetDevCapsA
(
device
,
&
capsA
,
sizeof
(
capsA
));
ok
(
rc
==
MMSYSERR_NOERROR
||
rc
==
MMSYSERR_BADDEVICEID
||
rc
==
MMSYSERR_NODRIVER
,
...
...
@@ -324,14 +323,11 @@ static void wave_in_test_device(UINT_PTR device)
dev_name
(
device
),
wave_in_error
(
rc
));
if
(
rc
==
MMSYSERR_BADDEVICEID
||
rc
==
MMSYSERR_NODRIVER
)
return
;
ok
(
capsA
.
wReserved1
!=
0xffff
,
"got %u
\n
"
,
capsA
.
wReserved1
);
memset
(
&
capsW
,
0xcc
,
sizeof
(
capsW
));
rc
=
waveInGetDevCapsW
(
device
,
&
capsW
,
sizeof
(
capsW
));
ok
(
rc
==
MMSYSERR_NOERROR
||
rc
==
MMSYSERR_NOTSUPPORTED
,
"waveInGetDevCapsW(%s): MMSYSERR_NOERROR or MMSYSERR_NOTSUPPORTED "
"expected, got %s
\n
"
,
dev_name
(
device
),
wave_in_error
(
rc
));
ok
(
capsW
.
wReserved1
==
0
,
"got %u
\n
"
,
capsW
.
wReserved1
);
rc
=
waveInGetDevCapsA
(
device
,
NULL
,
sizeof
(
capsA
));
ok
(
rc
==
MMSYSERR_INVALPARAM
,
...
...
dlls/winmm/tests/wave.c
View file @
b22fa89d
...
...
@@ -893,7 +893,6 @@ static void wave_out_test_device(UINT_PTR device)
GetSystemInfo
(
&
sSysInfo
);
dwPageSize
=
sSysInfo
.
dwPageSize
;
memset
(
&
capsA
,
0xcc
,
sizeof
(
capsA
));
rc
=
waveOutGetDevCapsA
(
device
,
&
capsA
,
sizeof
(
capsA
));
ok
(
rc
==
MMSYSERR_NOERROR
||
rc
==
MMSYSERR_BADDEVICEID
||
rc
==
MMSYSERR_NODRIVER
,
...
...
@@ -901,14 +900,11 @@ static void wave_out_test_device(UINT_PTR device)
dev_name
(
device
),
wave_out_error
(
rc
));
if
(
rc
==
MMSYSERR_BADDEVICEID
||
rc
==
MMSYSERR_NODRIVER
)
return
;
ok
(
capsA
.
wReserved1
==
0
,
"got %u
\n
"
,
capsA
.
wReserved1
);
memset
(
&
capsW
,
0xcc
,
sizeof
(
capsW
));
rc
=
waveOutGetDevCapsW
(
device
,
&
capsW
,
sizeof
(
capsW
));
ok
(
rc
==
MMSYSERR_NOERROR
||
rc
==
MMSYSERR_NOTSUPPORTED
,
"waveOutGetDevCapsW(%s): MMSYSERR_NOERROR or MMSYSERR_NOTSUPPORTED "
"expected, got %s
\n
"
,
dev_name
(
device
),
wave_out_error
(
rc
));
ok
(
capsW
.
wReserved1
==
0
,
"got %u
\n
"
,
capsW
.
wReserved1
);
rc
=
waveOutGetDevCapsA
(
device
,
0
,
sizeof
(
capsA
));
ok
(
rc
==
MMSYSERR_INVALPARAM
,
...
...
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