Correct oversight in Java test and remove direct VFD from SWMR supported

drivers.
This commit is contained in:
Quincey Koziol 2016-12-02 11:36:27 -08:00
parent a0d3801251
commit e1026bd354
2 changed files with 2 additions and 2 deletions

View File

@ -16,6 +16,7 @@
package test;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;

View File

@ -109,8 +109,7 @@ H5FD_supports_swmr_test(const char *vfd_name)
if(!vfd_name || !HDstrcmp(vfd_name, ""))
ret_value = TRUE;
else
ret_value = !HDstrcmp(vfd_name, "direct")
|| !HDstrcmp(vfd_name, "log")
ret_value = !HDstrcmp(vfd_name, "log")
|| !HDstrcmp(vfd_name, "sec2");
FUNC_LEAVE_NOAPI(ret_value)