summaryrefslogtreecommitdiffstats
path: root/server/tests/refcount-tests.c
diff options
context:
space:
mode:
Diffstat (limited to 'server/tests/refcount-tests.c')
-rw-r--r--server/tests/refcount-tests.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/server/tests/refcount-tests.c b/server/tests/refcount-tests.c
index ff82b4ca8..db2a256ee 100644
--- a/server/tests/refcount-tests.c
+++ b/server/tests/refcount-tests.c
@@ -223,7 +223,8 @@ int main(int argc, const char *argv[])
suite = create_suite();
sr = srunner_create(suite);
srunner_set_fork_status(sr, CK_FORK);
- srunner_run_all(sr, CK_VERBOSE);
+ /* If CK_VERBOSITY is set, use that, otherwise it defaults to CK_NORMAL */
+ srunner_run_all(sr, CK_ENV);
failure_count = srunner_ntests_failed(sr);
srunner_free(sr);
return (failure_count == 0 ? EXIT_SUCCESS : EXIT_FAILURE);