summaryrefslogtreecommitdiffstats
path: root/server/tests/sysdb-tests.c
diff options
context:
space:
mode:
Diffstat (limited to 'server/tests/sysdb-tests.c')
-rw-r--r--server/tests/sysdb-tests.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/server/tests/sysdb-tests.c b/server/tests/sysdb-tests.c
index f1d3ae49d..d4f0e2fdb 100644
--- a/server/tests/sysdb-tests.c
+++ b/server/tests/sysdb-tests.c
@@ -2532,7 +2532,8 @@ int main(int argc, const char *argv[]) {
sysdb_suite = create_sysdb_suite();
sr = srunner_create(sysdb_suite);
- 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);