Skip to content

Commit d586966

Browse files
committed
Ignore wrong checks that will be fixed in next libipt
1 parent 6070605 commit d586966

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/block/decoder.rs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,8 @@ mod test {
285285
let a = b.asid().unwrap();
286286
assert!(a.cr3().is_none());
287287
assert!(a.vmcs().is_none());
288-
assert!(b.core_bus_ratio().is_ok());
288+
// TODO: enable this once libipt 2.1.3 will be released
289+
// assert!(b.core_bus_ratio().is_err());
289290
assert!(b.event().is_err());
290291
let used_builder = b.used_builder();
291292
unsafe {
@@ -305,6 +306,7 @@ mod test {
305306
assert!(b.decode_next().is_err());
306307
assert!(b.sync_backward().is_err());
307308
assert!(b.sync_forward().is_err());
308-
assert!(b.time().is_ok());
309+
// TODO: enable this once libipt 2.1.3 will be released
310+
// assert!(b.time().is_err());
309311
}
310312
}

0 commit comments

Comments
 (0)