From 0cde7cdf39eef296a6b6e379b324f78c8baa0f0e Mon Sep 17 00:00:00 2001 From: Axel Beckert Date: Wed, 27 Jun 2012 01:41:42 +0200 Subject: [PATCH] t/hook-tls.t: Always output tested distribution --- t/hook-tls.t | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/t/hook-tls.t b/t/hook-tls.t index cb85402..573c8a5 100755 --- a/t/hook-tls.t +++ b/t/hook-tls.t @@ -69,8 +69,8 @@ sub testTLSDisabling # ok( -d "hooks/$dist", "There is a hook directory for the distro $dist" ); - ok( -e "hooks/$dist/10-disable-tls", "TLS Disabling hook exists" ); - ok( -x "hooks/$dist/10-disable-tls", "TLS Disabling hook is executable" ); + ok( -e "hooks/$dist/10-disable-tls", "TLS Disabling hook exists ($dist)" ); + ok( -x "hooks/$dist/10-disable-tls", "TLS Disabling hook is executable ($dist)" ); # # Call the hook @@ -80,7 +80,7 @@ sub testTLSDisabling # # Make sure the the TLS directory is empty # - ok( ! -e "$dir/lib/tls/foo", "The fake library from /lib/tls is gone" ); - ok( -e "$dir/lib/tls.disabled/foo", "The fake library ended up in /lib/tls.disabled" ); - ok( -d "$dir/lib/tls", "There is a new /lib/tls directory" ); + ok( ! -e "$dir/lib/tls/foo", "The fake library from /lib/tls is gone ($dist)" ); + ok( -e "$dir/lib/tls.disabled/foo", "The fake library ended up in /lib/tls.disabled ($dist)" ); + ok( -d "$dir/lib/tls", "There is a new /lib/tls directory ($dist)" ); }