From e76ad4bbc12f348a9a16461bca69f619bd740913 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Fri, 30 Nov 2018 14:58:53 -0800 Subject: [PATCH] Crank sss debuglevel up to 9, and also do it for cockpit test Signed-off-by: Adam Williamson --- tests/realmd_join_cockpit.pm | 4 ++++ tests/realmd_join_sssd.pm | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/tests/realmd_join_cockpit.pm b/tests/realmd_join_cockpit.pm index 916f88fa..70e1fb82 100644 --- a/tests/realmd_join_cockpit.pm +++ b/tests/realmd_join_cockpit.pm @@ -15,6 +15,10 @@ sub run { mutex_unlock "freeipa_ready"; # do repo setup repo_setup(); + # set sssd debugging level higher (useful for debugging failures) + # optional as it's not really part of the test + script_run "dnf -y install sssd-tools", 220; + script_run "sss_debuglevel 9"; # run firefox and login to cockpit # note: we can't use wait_screen_change, wait_still_screen or # check_type_string in cockpit because of that fucking constantly diff --git a/tests/realmd_join_sssd.pm b/tests/realmd_join_sssd.pm index 98520055..cb12b12c 100644 --- a/tests/realmd_join_sssd.pm +++ b/tests/realmd_join_sssd.pm @@ -81,7 +81,7 @@ sub run { # set sssd debugging level higher (useful for debugging failures) # optional as it's not really part of the test script_run "dnf -y install sssd-tools", 220; - script_run "sss_debuglevel 6"; + script_run "sss_debuglevel 9"; # if upgrade test, report that we're enrolled mutex_create('client_enrolled') if get_var("UPGRADE"); # if this is an upgrade test, wait for server to be upgraded before