summaryrefslogtreecommitdiffstats
path: root/test/vfd.c
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2020-07-31 18:40:29 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2020-07-31 18:40:29 (GMT)
commit08dca47475f41e93348cf0c2ea708e787c232014 (patch)
treee50f08ecd29b8363082c6ef9134b8e1987b02822 /test/vfd.c
parent50f404c887118577034c6412aeaaa1f6db2fe475 (diff)
downloadhdf5-08dca47475f41e93348cf0c2ea708e787c232014.zip
hdf5-08dca47475f41e93348cf0c2ea708e787c232014.tar.gz
hdf5-08dca47475f41e93348cf0c2ea708e787c232014.tar.bz2
Minor normalizations with hdf5_1_10
Diffstat (limited to 'test/vfd.c')
-rw-r--r--test/vfd.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/test/vfd.c b/test/vfd.c
index 038c967..bb04e97 100644
--- a/test/vfd.c
+++ b/test/vfd.c
@@ -3286,8 +3286,7 @@ error:
*
* Purpose: Tests the basic features of Virtual File Drivers
*
- * Return: Success: 0
- * Failure: 1
+ * Return: EXIT_SUCCESS/EXIT_FAILURE
*
*-------------------------------------------------------------------------
*/
@@ -3317,11 +3316,11 @@ main(void)
if(nerrors) {
HDprintf("***** %d Virtual File Driver TEST%s FAILED! *****\n",
nerrors, nerrors > 1 ? "S" : "");
- return 1;
+ return EXIT_FAILURE;
} /* end if */
HDprintf("All Virtual File Driver tests passed.\n");
- return 0;
+ return EXIT_SUCCESS;
} /* end main() */