File: skip_failing_test_on_i386.patch

package info (click to toggle)
rust-symphonia-core 0.5.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 604 kB
  • sloc: makefile: 4
file content (12 lines) | stat: -rw-r--r-- 354 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
Description: Skip failing test on x86
 See: https://github.com/pdeljanov/Symphonia/issues/254
--- a/src/units.rs
+++ b/src/units.rs
@@ -246,6 +246,7 @@
     use std::time::Duration;
 
     #[test]
+    #[cfg(not(target_arch = "x86"))]
     fn verify_timebase() {
         // Verify accuracy of timestamp -> time
         let tb1 = TimeBase::new(1, 320);