summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/plugin.c5
-rw-r--r--test/test_plugin.sh.in4
2 files changed, 5 insertions, 4 deletions
diff --git a/test/plugin.c b/test/plugin.c
index debc38b..dd9a1f7 100644
--- a/test/plugin.c
+++ b/test/plugin.c
@@ -791,14 +791,15 @@ main(void)
if(nerrors)
TEST_ERROR
- printf("All dataset tests passed.\n");
+ printf("All plugin tests passed.\n");
h5_cleanup(FILENAME, fapl);
return 0;
error:
nerrors = MAX(1, nerrors);
- printf("***** %d DATASET TEST%s FAILED! *****\n",
+ printf("***** %d PLUGIN TEST%s FAILED! *****\n",
nerrors, 1 == nerrors ? "" : "S");
return 1;
}
+
diff --git a/test/test_plugin.sh.in b/test/test_plugin.sh.in
index a881198..c00df8c 100644
--- a/test/test_plugin.sh.in
+++ b/test/test_plugin.sh.in
@@ -24,7 +24,7 @@ TOP_BUILDDIR=@top_builddir@
echo $srcdir
echo $TOP_BUILDDIR
-# Determine backward compatibility options eneabled
+# Determine backward compatibility options enabled
DEPRECATED_SYMBOLS="@DEPRECATED_SYMBOLS@"
nerrors=0
@@ -54,7 +54,7 @@ TESTING() {
}
if test $nerrors -eq 0 ; then
- echo "All Error API tests passed."
+ echo "All Plugin API tests passed."
fi
exit $nerrors