summaryrefslogtreecommitdiffstats
path: root/server/tests/find_uid-tests.c
diff options
context:
space:
mode:
Diffstat (limited to 'server/tests/find_uid-tests.c')
-rw-r--r--server/tests/find_uid-tests.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/server/tests/find_uid-tests.c b/server/tests/find_uid-tests.c
index bd213cd5a..9eafadd45 100644
--- a/server/tests/find_uid-tests.c
+++ b/server/tests/find_uid-tests.c
@@ -117,7 +117,8 @@ int main(void)
int number_failed;
Suite *s = find_uid_suite ();
SRunner *sr = srunner_create (s);
- srunner_run_all (sr, CK_NORMAL);
+ /* If CK_VERBOSITY is set, use that, otherwise it defaults to CK_NORMAL */
+ srunner_run_all(sr, CK_ENV);
number_failed = srunner_ntests_failed (sr);
srunner_free (sr);
return (number_failed == 0) ? EXIT_SUCCESS : EXIT_FAILURE;