diff options
author | Peter Andersson <[email protected]> | 2013-02-19 14:13:02 +0100 |
---|---|---|
committer | Peter Andersson <[email protected]> | 2013-02-19 14:13:06 +0100 |
commit | e6613acf5a29c882d4673c6a8371e03523f9590c (patch) | |
tree | 2a954bd03963b184d68bbf29385488d7d9633432 /lib/common_test/src/ct_logs.erl | |
parent | df2b8d69d2abf071f4753da75e296e06859b5749 (diff) | |
parent | 93031d653bf93ac8c29401e6adf6fde2e51e6573 (diff) | |
download | otp-e6613acf5a29c882d4673c6a8371e03523f9590c.tar.gz otp-e6613acf5a29c882d4673c6a8371e03523f9590c.tar.bz2 otp-e6613acf5a29c882d4673c6a8371e03523f9590c.zip |
Merge remote branch 'origin/peppe/common_test/force_stop'
* origin/peppe/common_test/force_stop:
Repair broken force_stop functionality
OTP-10832
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 be52be6bf3..0b204a681a 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. |