Partially remove Seek constraint from ListingStream, extract fifo node in tests
This commit is contained in:
parent
98fcfd7f5e
commit
d3ea6c0971
2 changed files with 2 additions and 1 deletions
|
@ -7,7 +7,7 @@ use {
|
||||||
};
|
};
|
||||||
|
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub struct ListingStream<R: Read + Send + Seek> {
|
pub struct ListingStream<R: Read + Send> {
|
||||||
pub length: u32,
|
pub length: u32,
|
||||||
reader: R,
|
reader: R,
|
||||||
}
|
}
|
||||||
|
|
|
@ -519,5 +519,6 @@ mod tests {
|
||||||
eprintln!("Read incorrect filetype: {:?}", node.filetype);
|
eprintln!("Read incorrect filetype: {:?}", node.filetype);
|
||||||
panic!();
|
panic!();
|
||||||
};
|
};
|
||||||
|
node.extract(Some("test/output")).unwrap();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue