test: compile the facade's parallel tests, and build them in CI
parallel_integration.rs declared `_sequential` and used `sequential` under the parallel feature, which nothing in CI enabled for the facade. ci-test.sh now lints and tests the facade with parallel on. Co-Authored-By: Claude Opus 5.5 (1M context) <[email protected]>
This commit is contained in:
@@ -292,7 +292,8 @@ mod parallel_tests {
|
||||
}
|
||||
|
||||
// Sequential decompression
|
||||
let _sequential: Vec<Vec<u8>> = chunk_infos
|
||||
#[cfg_attr(not(feature = "parallel"), allow(unused_variables))]
|
||||
let sequential: Vec<Vec<u8>> = chunk_infos
|
||||
.iter()
|
||||
.map(|ci| {
|
||||
let addr = ci.address as usize;
|
||||
|
||||
Reference in New Issue
Block a user