We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 064038a commit b298751Copy full SHA for b298751
tests/test_plist.rs
@@ -530,12 +530,13 @@ type DAB = DatasetAccessBuilder;
530
#[test]
531
fn test_dapl_common() -> hdf5::Result<()> {
532
test_pl_common!(DA, PropertyListClass::DatasetAccess, |b: &mut DAB| b
533
- .efile_prefix("abc")
+ .chunk_cache(100, 200, 0.5)
534
.finish());
535
Ok(())
536
}
537
538
539
+#[cfg(hdf5_1_8_17)]
540
fn test_dapl_set_efile_prefix() -> hdf5::Result<()> {
541
assert_eq!(DA::try_new()?.get_efile_prefix().unwrap(), "".to_owned());
542
assert_eq!(DA::try_new()?.efile_prefix(), "".to_owned());
0 commit comments