File: skip_tests_without_data.patch

package info (click to toggle)
rust-rusty-chromaprint 0.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 256 kB
  • sloc: makefile: 4
file content (18 lines) | stat: -rw-r--r-- 499 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
--- a/src/audio_processor.rs
+++ b/src/audio_processor.rs
@@ -235,6 +235,7 @@
     }
 
     #[test]
+    #[ignore]
     fn pass_through() {
         let data = read_s16le("data/test_mono_44100.raw");
         let mut processor = AudioProcessor::new(44100, AudioBuffer::new());
@@ -271,6 +272,7 @@
     }
 
     #[test]
+    #[ignore]
     fn stereo_to_mono() {
         let data1 = read_s16le("data/test_mono_44100.raw");
         let data2 = read_s16le("data/test_stereo_44100.raw");