Esempio n. 1
0
 public void H5Fget_mdc_configTest2()
 {
     H5AC.cache_config_t conf = new H5AC.cache_config_t();
     Assert.IsFalse(
         H5F.get_mdc_config(Utilities.RandomInvalidHandle(),
                            ref conf) >= 0);
 }
Esempio n. 2
0
 public void H5Fget_mdc_configTest1()
 {
     H5AC.cache_config_t conf = new H5AC.cache_config_t(
         H5AC.CURR_CACHE_CONFIG_VERSION);
     Assert.IsTrue(H5F.get_mdc_config(m_v0_class_file, ref conf) >= 0);
     Assert.IsTrue(H5F.get_mdc_config(m_v2_class_file, ref conf) >= 0);
 }
Esempio n. 3
0
 public void H5Fset_mdc_configTest2()
 {
     H5AC.cache_config_t conf = new H5AC.cache_config_t(
         H5AC.CURR_CACHE_CONFIG_VERSION);
     Assert.IsFalse(
         H5F.set_mdc_config(Utilities.RandomInvalidHandle(),
                            ref conf) >= 0);
 }
Esempio n. 4
0
 public void H5Fset_mdc_configTest1()
 {
     H5AC.cache_config_t conf = new H5AC.cache_config_t(
         H5AC.CURR_CACHE_CONFIG_VERSION);
     // TODO: define sensible defaults for MDC config.
     //Assert.IsTrue(H5F.set_mdc_config(m_v0_class_file, ref conf) >= 0);
     //Assert.IsTrue(H5F.set_mdc_config(m_v2_class_file, ref conf) >= 0);
 }