It's not useful to report the location of the temporary directory for each test if you're going to immediately delete it.
Signed-off-by: Steve Beattie <[email protected]> --- utils/test/test-aa-easyprof.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) Index: b/utils/test/test-aa-easyprof.py =================================================================== --- a/utils/test/test-aa-easyprof.py +++ b/utils/test/test-aa-easyprof.py @@ -172,7 +172,8 @@ TEMPLATES_DIR="%s/templates" if os.path.exists(self.tmpdir): if debugging: sys.stdout.write("%s\n" % self.tmpdir) - recursive_rm(self.tmpdir) + else: + recursive_rm(self.tmpdir) # # config file tests -- AppArmor mailing list [email protected] Modify settings or unsubscribe at: https://lists.ubuntu.com/mailman/listinfo/apparmor
