diff options
author | Peter Andersson <[email protected]> | 2013-02-18 04:12:16 +0100 |
---|---|---|
committer | Peter Andersson <[email protected]> | 2013-02-18 11:30:06 +0100 |
commit | 93031d653bf93ac8c29401e6adf6fde2e51e6573 (patch) | |
tree | db00edf000f9b6e0c3bcbb6e831999143254dc4f /lib/common_test/src/ct_logs.erl | |
parent | 2f4ed0cac2707921b6f5b9cc2ad8192502733913 (diff) | |
download | otp-93031d653bf93ac8c29401e6adf6fde2e51e6573.tar.gz otp-93031d653bf93ac8c29401e6adf6fde2e51e6573.tar.bz2 otp-93031d653bf93ac8c29401e6adf6fde2e51e6573.zip |
Repair broken force_stop functionality
Diffstat (limited to 'lib/common_test/src/ct_logs.erl')
-rw-r--r-- | lib/common_test/src/ct_logs.erl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/common_test/src/ct_logs.erl b/lib/common_test/src/ct_logs.erl index 5924930072..b7eeace609 100644 --- a/lib/common_test/src/ct_logs.erl +++ b/lib/common_test/src/ct_logs.erl @@ -1475,8 +1475,9 @@ count_cases(Dir) -> write_summary(SumFile, Summary), Summary end; - {error, _Reason} -> - io:format("\nFailed to read ~p (skipped)\n", [LogFile]), + {error, Reason} -> + io:format("\nFailed to read ~p: ~p (skipped)\n", + [LogFile,Reason]), error end end. |