diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2020-10-24 00:13:05 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2020-10-24 00:13:05 (GMT) |
commit | ca3659a01427cd58e5fddb57349b7030e5cb2dcd (patch) | |
tree | 5633c0b4bb7b5174518d27b33db43228c1c538d0 /test/testframe.c | |
parent | f9679de85c9de96603d448950da5e1f2c18b4494 (diff) | |
download | hdf5-ca3659a01427cd58e5fddb57349b7030e5cb2dcd.zip hdf5-ca3659a01427cd58e5fddb57349b7030e5cb2dcd.tar.gz hdf5-ca3659a01427cd58e5fddb57349b7030e5cb2dcd.tar.bz2 |
HD prefix updates in src/ and test/
Adds missing HD prefixes to API calls in src and test.
Adds some extra processing to bin/checkposix to keep the noise
levels down when running the script (not comprehensive).
Diffstat (limited to 'test/testframe.c')
-rw-r--r-- | test/testframe.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/testframe.c b/test/testframe.c index 22f694e..bf6a0e8 100644 --- a/test/testframe.c +++ b/test/testframe.c @@ -442,15 +442,15 @@ GetTestExpress(void) /* set it here for now. Should be done in something like h5test_init(). */ if (TestExpress == -1) { - env_val = getenv("HDF5TestExpress"); + env_val = HDgetenv("HDF5TestExpress"); if (env_val == NULL) SetTestExpress(1); - else if (strcmp(env_val, "0") == 0) + else if (HDstrcmp(env_val, "0") == 0) SetTestExpress(0); - else if (strcmp(env_val, "1") == 0) + else if (HDstrcmp(env_val, "1") == 0) SetTestExpress(1); - else if (strcmp(env_val, "2") == 0) + else if (HDstrcmp(env_val, "2") == 0) SetTestExpress(2); else SetTestExpress(3); @@ -521,7 +521,7 @@ ParseTestVerbosity(char *argv) else if (*argv == 'h') SetTestVerbosity(VERBO_HI); else - SetTestVerbosity(atoi(argv)); + SetTestVerbosity(HDatoi(argv)); } /* |