summaryrefslogtreecommitdiff
path: root/lib/inets
diff options
context:
space:
mode:
authorLukas Larsson <lukas@erlang.org>2019-11-20 14:50:03 +0100
committerLukas Larsson <lukas@erlang.org>2019-11-20 14:50:03 +0100
commit0cf851250e09820e0757e2ec1d461888e52abb93 (patch)
treea4c44ccbe4fbc2251901015a8d8a5731e40464d9 /lib/inets
parentcdfa93fa476171435fc9c0c7c82a5b09461d2621 (diff)
downloaderlang-0cf851250e09820e0757e2ec1d461888e52abb93.tar.gz
otp: Benchmark test fixes
Diffstat (limited to 'lib/inets')
-rw-r--r--lib/inets/test/httpd_bench_SUITE.erl3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/inets/test/httpd_bench_SUITE.erl b/lib/inets/test/httpd_bench_SUITE.erl
index 087516f56c..1cba527687 100644
--- a/lib/inets/test/httpd_bench_SUITE.erl
+++ b/lib/inets/test/httpd_bench_SUITE.erl
@@ -87,7 +87,8 @@ init_per_suite(Config) ->
{Node, Host} = setup(Config, node()),
init_ssl(Config),
[{iter, 10}, {server_node, Node}, {server_host, Host} | Config]
- catch _:_ ->
+ catch E:R:ST ->
+ ct:pal("~p:~p:~p",[E,R,ST]),
{skipped, "Benchmark machines only"}
end.