autotest / autotest-client-tests

Autotest client tests
Other
29 stars 84 forks source link

Fix for policycoreutils-semodule:disable tests. #95

Closed ramyabs closed 7 years ago

ramyabs commented 7 years ago

Problem Description : After Disabling the module using semodule -d,the script was trying to grep the disabled module using command semodule -l ,which was not throwing any output to stdout hence the test failed .

Fix : changing semodule -l to semodule -list=full which will list the disabled modules on stdout and made grep command more generic .

Signed-off-by: Ramya BSramyabs1@in.ibm.com

athira-rajeev commented 7 years ago

Looks Fine