Squashed commit of the token_refactoring branch:

This commit is contained in:
Dana Robinson
2020-01-16 13:29:34 -08:00
parent 024f7ba092
commit a92c735c9b
225 changed files with 14022 additions and 4695 deletions

View File

@@ -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