File: disable-tests-missing-sources.patch

package info (click to toggle)
rust-obj 0.10.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 180 kB
  • sloc: makefile: 4
file content (22 lines) | stat: -rw-r--r-- 577 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
diff --git a/tests/round_trip.rs b/tests/round_trip.rs
index 24715b0..47d7c04 100644
--- a/tests/round_trip.rs
+++ b/tests/round_trip.rs
@@ -14,7 +14,7 @@
 
 use obj::{Obj, ObjData};
 
-#[test]
+//#[test]
 fn round_trip_sponza_no_mtls() {
     let sponza: Obj = Obj::load("test_assets/sponza.obj").unwrap();
 
@@ -25,7 +25,7 @@ fn round_trip_sponza_no_mtls() {
     assert_eq!(sponza_round_trip, sponza.data);
 }
 
-#[test]
+//#[test]
 fn round_trip_sponza_with_mtl() {
     let mut sponza: Obj = Obj::load("test_assets/sponza.obj").unwrap();
     sponza.load_mtls().unwrap();