summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorVailin Choi <vchoi@hdfgroup.org>2015-07-09 21:07:08 (GMT)
committerVailin Choi <vchoi@hdfgroup.org>2015-07-09 21:07:08 (GMT)
commitc948f9f3f94d90b79b999cf7ca2bb8652edcace9 (patch)
tree740fadc78bd93e5d2ed210c4d8fbfffe3739e387 /test
parentd90da43810fee65b1996a66e827465bd2244c549 (diff)
downloadhdf5-c948f9f3f94d90b79b999cf7ca2bb8652edcace9.zip
hdf5-c948f9f3f94d90b79b999cf7ca2bb8652edcace9.tar.gz
hdf5-c948f9f3f94d90b79b999cf7ca2bb8652edcace9.tar.bz2
[svn-r27367] Fix the test failure exposed when --disable-sharelib-rpath.
Tested on jam, koala, ostrich, moohan, platypus, quail.
Diffstat (limited to 'test')
-rw-r--r--test/accum.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/test/accum.c b/test/accum.c
index 93f68f9..7045a19 100644
--- a/test/accum.c
+++ b/test/accum.c
@@ -1817,7 +1817,6 @@ test_swmr_write_big(void)
int status; /* Status returned from child process */
H5F_io_info_t fio_info; /* I/O info for operation */
char *new_argv[] = {NULL};
- char *new_envp[] = {NULL};
char *driver = NULL; /* VFD string (from env variable) */
TESTING("SWMR write of large metadata");
@@ -1935,8 +1934,8 @@ test_swmr_write_big(void)
FAIL_STACK_ERROR;
} else if(0 == pid) { /* Child process */
/* Run the reader */
- status = HDexecve(SWMR_READER, new_argv, new_envp);
- printf("errno from execve = %s\n", strerror(errno));
+ status = HDexecv(SWMR_READER, new_argv);
+ printf("errno from execv = %s\n", strerror(errno));
FAIL_STACK_ERROR;
}