mirror of
https://github.com/RustAudio/rodio
synced 2024-11-10 06:04:16 +00:00
disables known broken decoder in test (see #577)
This commit is contained in:
parent
7cd55a1bb3
commit
d6e64dc80c
1 changed files with 6 additions and 4 deletions
|
@ -8,7 +8,7 @@ use rstest_reuse::{self, *};
|
|||
|
||||
#[template]
|
||||
#[rstest]
|
||||
// note: disabled, broken decoder see issue: #516
|
||||
// note: disabled, broken decoder see issue: #516 and #539
|
||||
// #[cfg_attr(feature = "symphonia-vorbis"), case("ogg", true, "symphonia")],
|
||||
#[cfg_attr(
|
||||
all(feature = "minimp3", not(feature = "symphonia-mp3")),
|
||||
|
@ -23,7 +23,8 @@ use rstest_reuse::{self, *};
|
|||
case("flac", false, "claxon")
|
||||
)]
|
||||
#[cfg_attr(feature = "symphonia-mp3", case("mp3", true, "symphonia"))]
|
||||
#[cfg_attr(feature = "symphonia-isomp4", case("m4a", true, "symphonia"))]
|
||||
// note: disabled, broken decoder see issue: #577
|
||||
// #[cfg_attr(feature = "symphonia-isomp4", case("m4a", true, "symphonia"))]
|
||||
#[cfg_attr(feature = "symphonia-wav", case("wav", true, "symphonia"))]
|
||||
#[cfg_attr(feature = "symphonia-flac", case("flac", true, "symphonia"))]
|
||||
fn all_decoders(
|
||||
|
@ -35,14 +36,15 @@ fn all_decoders(
|
|||
|
||||
#[template]
|
||||
#[rstest]
|
||||
// note: disabled, broken decoder see issue: #516
|
||||
// note: disabled, broken decoder see issue: #516 and #539
|
||||
// #[cfg_attr(feature = "symphonia-vorbis"), case("ogg", true, "symphonia")],
|
||||
#[cfg_attr(
|
||||
all(feature = "wav", not(feature = "symphonia-wav")),
|
||||
case("wav", "hound")
|
||||
)]
|
||||
#[cfg_attr(feature = "symphonia-mp3", case("mp3", "symphonia"))]
|
||||
#[cfg_attr(feature = "symphonia-isomp4", case("m4a", "symphonia"))]
|
||||
// note: disabled, broken decoder see issue: #577
|
||||
// #[cfg_attr(feature = "symphonia-isomp4", case("m4a", "symphonia"))]
|
||||
#[cfg_attr(feature = "symphonia-wav", case("wav", "symphonia"))]
|
||||
#[cfg_attr(feature = "symphonia-flac", case("flac", "symphonia"))]
|
||||
fn supported_decoders(#[case] format: &'static str, #[case] decoder_name: &'static str) {}
|
||||
|
|
Loading…
Reference in a new issue