diff options
author | David Young <dyoung@hdfgroup.org> | 2020-02-06 16:43:37 (GMT) |
---|---|---|
committer | David Young <dyoung@hdfgroup.org> | 2020-02-06 16:43:37 (GMT) |
commit | 8f77878953b55cbffb6331161d12eab1c778a8a5 (patch) | |
tree | 3e158b7f2d672331361a4f6afc8e0c6ef2779b03 | |
parent | a0a75e7b6e157b40bbe09c7955153835ce200f79 (diff) | |
download | hdf5-8f77878953b55cbffb6331161d12eab1c778a8a5.zip hdf5-8f77878953b55cbffb6331161d12eab1c778a8a5.tar.gz hdf5-8f77878953b55cbffb6331161d12eab1c778a8a5.tar.bz2 |
Oops, the test has to return success in the unimplemented case.
-rw-r--r-- | test/thread_id.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/test/thread_id.c b/test/thread_id.c index 8f6e2d5..9b289fa 100644 --- a/test/thread_id.c +++ b/test/thread_id.c @@ -156,8 +156,7 @@ main(void) int main(void) { - errx(EXIT_FAILURE, "not implemented in this configuration."); + HDfprintf(stderr, "not implemented in this configuration.\n"); + return EXIT_SUCCESS; } - #endif /*H5_HAVE_THREADSAFE && !H5_HAVE_WIN_THREADS*/ - |