summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2021-11-02 13:32:14 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2021-11-02 13:32:14 (GMT)
commitf68c4e1478ac5e627f89c5bf045cf24e11c61cf0 (patch)
tree8f14d5e5ebc61cb10ef2cdb9b37392ec6de56638
parentafe2e31e65d05f9f49bd0512672eae520fced373 (diff)
parentbfc5575f1557f48a4eb949ea395b42db56dd2d64 (diff)
downloadhdf5-f68c4e1478ac5e627f89c5bf045cf24e11c61cf0.zip
hdf5-f68c4e1478ac5e627f89c5bf045cf24e11c61cf0.tar.gz
hdf5-f68c4e1478ac5e627f89c5bf045cf24e11c61cf0.tar.bz2
Merge remote-tracking branch 'nersc/post_open_fix' into hpcio/post_open_fix
-rw-r--r--test/links.c15
1 files changed, 11 insertions, 4 deletions
diff --git a/test/links.c b/test/links.c
index 6fab848..1c01b0f 100644
--- a/test/links.c
+++ b/test/links.c
@@ -22655,8 +22655,9 @@ main(void)
TEST_ERROR;
/* Skip tests external link tests when using non-native VOL connectors */
- if (!is_native) {
- HDputs(" External link tests skipped - not using native VOL connector");
+ if (!is_native || 0 == HDstrcmp(env_h5_drvr, "splitter")) {
+ HDputs(" External link tests skipped - not using native VOL connector, or using splitter "
+ "VFD");
}
else if (HDstrcmp(env_h5_drvr, "splitter") == 0) {
HDputs(" External link tests skipped - splitter VFD does not currently support external "
@@ -22714,7 +22715,10 @@ main(void)
nerrors += external_link_closing_deprec(my_fapl, new_format) < 0 ? 1 : 0;
#endif /* H5_NO_DEPRECATED_SYMBOLS */
- if (!driver_uses_modified_filename) {
+ if (driver_uses_modified_filename) {
+ HDputs(" external_link_endian() test skipped - driver uses modified filename");
+ }
+ else {
nerrors += external_link_endian(new_format) < 0 ? 1 : 0;
}
@@ -22729,7 +22733,10 @@ main(void)
nerrors += external_link_reltar(my_fapl, new_format) < 0 ? 1 : 0;
nerrors += external_link_chdir(my_fapl, new_format) < 0 ? 1 : 0;
- if (!driver_uses_modified_filename) {
+ if (driver_uses_modified_filename) {
+ HDputs(" external_set_elink_fapl1() test skipped - driver uses modified filename");
+ }
+ else {
nerrors += external_set_elink_fapl1(my_fapl, new_format) < 0 ? 1 : 0;
}