Squashed commit of the token_refactoring branch:
This commit is contained in:
committed by
David Young
parent
335fc0096c
commit
3e6a192e9c
@@ -24,6 +24,7 @@ import org.junit.After;
|
||||
import org.junit.Before;
|
||||
import org.junit.Rule;
|
||||
import org.junit.Test;
|
||||
import org.junit.Ignore;
|
||||
import org.junit.rules.TestName;
|
||||
|
||||
public class TestH5Edefault {
|
||||
@@ -55,20 +56,29 @@ public class TestH5Edefault {
|
||||
H5.H5Eprint2(-1, null);
|
||||
}
|
||||
|
||||
@Test
|
||||
@Ignore
|
||||
public void testH5Eprint() {
|
||||
try {
|
||||
H5.H5Fopen("test", HDF5Constants.H5F_ACC_RDWR, HDF5Constants.H5P_DEFAULT);
|
||||
}
|
||||
catch (Throwable err) {
|
||||
}
|
||||
try {
|
||||
H5.H5Eprint2(HDF5Constants.H5E_DEFAULT, null);
|
||||
}
|
||||
catch (Throwable err) {
|
||||
err.printStackTrace();
|
||||
fail("H5.H5Eprint: " + err);
|
||||
}
|
||||
/*
|
||||
* If HDF5_VOL_CONNECTOR is set, this might not be the
|
||||
* native connector and the error stack might be different.
|
||||
* Only check for the specific error stack if the native
|
||||
* connector is being used.
|
||||
*/
|
||||
String connector = System.getenv("HDF5_VOL_CONNECTOR");
|
||||
if (connector == null) {
|
||||
try {
|
||||
H5.H5Fopen("test", HDF5Constants.H5F_ACC_RDWR, HDF5Constants.H5P_DEFAULT);
|
||||
}
|
||||
catch (Throwable err) {
|
||||
}
|
||||
try {
|
||||
H5.H5Eprint2(HDF5Constants.H5E_DEFAULT, null);
|
||||
}
|
||||
catch (Throwable err) {
|
||||
err.printStackTrace();
|
||||
fail("H5.H5Eprint: " + err);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
@@ -427,20 +437,29 @@ public class TestH5Edefault {
|
||||
H5.H5Eprint2(-1, null);
|
||||
}
|
||||
|
||||
@Test
|
||||
@Ignore
|
||||
public void testH5EprintInt() {
|
||||
try {
|
||||
H5.H5Fopen("test", HDF5Constants.H5F_ACC_RDWR, HDF5Constants.H5P_DEFAULT);
|
||||
}
|
||||
catch (Throwable err) {
|
||||
}
|
||||
try {
|
||||
H5.H5Eprint2(HDF5Constants.H5E_DEFAULT, null);
|
||||
}
|
||||
catch (Throwable err) {
|
||||
err.printStackTrace();
|
||||
fail("H5.H5EprintInt: " + err);
|
||||
}
|
||||
/*
|
||||
* If HDF5_VOL_CONNECTOR is set, this might not be the
|
||||
* native connector and the error stack might be different.
|
||||
* Only check for the specific error stack if the native
|
||||
* connector is being used.
|
||||
*/
|
||||
String connector = System.getenv("HDF5_VOL_CONNECTOR");
|
||||
if (connector == null) {
|
||||
try {
|
||||
H5.H5Fopen("test", HDF5Constants.H5F_ACC_RDWR, HDF5Constants.H5P_DEFAULT);
|
||||
}
|
||||
catch (Throwable err) {
|
||||
}
|
||||
try {
|
||||
H5.H5Eprint2(HDF5Constants.H5E_DEFAULT, null);
|
||||
}
|
||||
catch (Throwable err) {
|
||||
err.printStackTrace();
|
||||
fail("H5.H5EprintInt: " + err);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
|
||||
Reference in New Issue
Block a user