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
ed7faad1
Commit
ed7faad1
authored
Aug 13, 2012
by
Francois Gouget
Committed by
Alexandre Julliard
Aug 13, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dsound/tests: Clarify some skip() traces.
parent
eabbe5ab
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
11 additions
and
11 deletions
+11
-11
capture.c
dlls/dsound/tests/capture.c
+2
-2
ds3d.c
dlls/dsound/tests/ds3d.c
+1
-1
ds3d8.c
dlls/dsound/tests/ds3d8.c
+2
-2
dsound.c
dlls/dsound/tests/dsound.c
+1
-1
dsound8.c
dlls/dsound/tests/dsound8.c
+2
-2
duplex.c
dlls/dsound/tests/duplex.c
+2
-2
propset.c
dlls/dsound/tests/propset.c
+1
-1
No files found.
dlls/dsound/tests/capture.c
View file @
ed7faad1
...
...
@@ -742,14 +742,14 @@ START_TEST(capture)
hDsound
=
LoadLibrary
(
"dsound.dll"
);
if
(
!
hDsound
)
{
skip
(
"dsound.dll not found
!
\n
"
);
skip
(
"dsound.dll not found
- skipping all tests
\n
"
);
return
;
}
pDirectSoundCaptureCreate
=
(
void
*
)
GetProcAddress
(
hDsound
,
"DirectSoundCaptureCreate"
);
pDirectSoundCaptureEnumerateA
=
(
void
*
)
GetProcAddress
(
hDsound
,
"DirectSoundCaptureEnumerateA"
);
if
(
!
pDirectSoundCaptureCreate
||
!
pDirectSoundCaptureEnumerateA
)
{
skip
(
"
capture test skipped
\n
"
);
skip
(
"
DirectSoundCapture{Create,Enumerate} missing - skipping all tests
\n
"
);
return
;
}
...
...
dlls/dsound/tests/ds3d.c
View file @
ed7faad1
...
...
@@ -1331,7 +1331,7 @@ START_TEST(ds3d)
FreeLibrary
(
hDsound
);
}
else
skip
(
"dsound.dll not found
!
\n
"
);
skip
(
"dsound.dll not found
- skipping all tests
\n
"
);
CoUninitialize
();
}
dlls/dsound/tests/ds3d8.c
View file @
ed7faad1
...
...
@@ -1151,12 +1151,12 @@ START_TEST(ds3d8)
if
(
pDirectSoundCreate8
)
ds3d8_tests
();
else
skip
(
"
ds3d8 test skipped
\n
"
);
skip
(
"
DirectSoundCreate8 missing - skipping all tests
\n
"
);
FreeLibrary
(
hDsound
);
}
else
skip
(
"dsound.dll not found
!
\n
"
);
skip
(
"dsound.dll not found
- skipping all tests
\n
"
);
CoUninitialize
();
}
dlls/dsound/tests/dsound.c
View file @
ed7faad1
...
...
@@ -1605,7 +1605,7 @@ START_TEST(dsound)
FreeLibrary
(
hDsound
);
}
else
win_skip
(
"dsound.dll not found
!
\n
"
);
win_skip
(
"dsound.dll not found
- skipping all tests
\n
"
);
CoUninitialize
();
}
dlls/dsound/tests/dsound8.c
View file @
ed7faad1
...
...
@@ -1189,12 +1189,12 @@ START_TEST(dsound8)
test_first_device
();
}
else
skip
(
"
dsound8 test skipped
\n
"
);
skip
(
"
DirectSoundCreate8 missing - skipping all tests
\n
"
);
FreeLibrary
(
hDsound
);
}
else
skip
(
"dsound.dll not found
!
\n
"
);
skip
(
"dsound.dll not found
- skipping all tests
\n
"
);
CoUninitialize
();
}
dlls/dsound/tests/duplex.c
View file @
ed7faad1
...
...
@@ -238,12 +238,12 @@ START_TEST(duplex)
if
(
pDirectSoundFullDuplexCreate
)
IDirectSoundFullDuplex_tests
();
else
skip
(
"
duplex test skipped
\n
"
);
skip
(
"
DirectSoundFullDuplexCreate missing - skipping all tests
\n
"
);
FreeLibrary
(
hDsound
);
}
else
skip
(
"dsound.dll not found
!
\n
"
);
skip
(
"dsound.dll not found
- skipping all tests
\n
"
);
CoUninitialize
();
}
dlls/dsound/tests/propset.c
View file @
ed7faad1
...
...
@@ -743,7 +743,7 @@ START_TEST(propset)
FreeLibrary
(
hDsound
);
}
else
skip
(
"dsound.dll not found
!
\n
"
);
skip
(
"dsound.dll not found
- skipping all tests
\n
"
);
CoUninitialize
();
}
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