aboutsummaryrefslogtreecommitdiffstats
path: root/lib/sasl
diff options
context:
space:
mode:
authorSiri Hansen <[email protected]>2017-05-30 10:15:39 +0200
committerSiri Hansen <[email protected]>2017-05-30 10:15:39 +0200
commit03f2b87b6a7262a895e41ffaaa5f69dfa01a4bed (patch)
tree9ea451e4fe850d834bd09aed7dddd965d7230b08 /lib/sasl
parentb182febe36aa63eb8290f24ba4b7932673a9a9bc (diff)
downloadotp-03f2b87b6a7262a895e41ffaaa5f69dfa01a4bed.tar.gz
otp-03f2b87b6a7262a895e41ffaaa5f69dfa01a4bed.tar.bz2
otp-03f2b87b6a7262a895e41ffaaa5f69dfa01a4bed.zip
Update sasl_report_SUITE to accept new size of sasl.log
PR-1448 caused sasl_report_SUITE:gen_server_crash to produce a slightly bigger sasl.log. This is because the Reason used in the crash report is changed from {ExitReason,Stacktrace} to ExitReason only, where ExitReason={badmatch,BigGbSet}. The term is written with a depth limit of 30, and when removing the top tuple, a new level of the gb_set is exposed. This level contains more data than the removed Stacktrace, and thus the resulting log gets a bit bigger than before.
Diffstat (limited to 'lib/sasl')
-rw-r--r--lib/sasl/test/sasl_report_SUITE.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sasl/test/sasl_report_SUITE.erl b/lib/sasl/test/sasl_report_SUITE.erl
index aa229726ae..eb0a877c45 100644
--- a/lib/sasl/test/sasl_report_SUITE.erl
+++ b/lib/sasl/test/sasl_report_SUITE.erl
@@ -79,7 +79,7 @@ do_gen_server_crash(Config) ->
error_logger:logfile(close),
check_file(KernelLog, 70000, 150000),
- check_file(SaslLog, 50000, 100000),
+ check_file(SaslLog, 100000, 150000),
ok.