aboutsummaryrefslogtreecommitdiffstats
path: root/lib/test_server
diff options
context:
space:
mode:
authorLukas Larsson <[email protected]>2013-06-03 17:34:12 +0200
committerLukas Larsson <[email protected]>2013-06-03 17:34:12 +0200
commit6906875260e2b70d3fd405f3eb6eab625814d105 (patch)
tree03e02136c197f7f2fab3e91fd87fdacb215ca417 /lib/test_server
parent46c45db2558cda8e36dc7d977db722b1b8d8c86f (diff)
parent9c7f77c78cb90130d9309ce8827f30287c38348f (diff)
downloadotp-6906875260e2b70d3fd405f3eb6eab625814d105.tar.gz
otp-6906875260e2b70d3fd405f3eb6eab625814d105.tar.bz2
otp-6906875260e2b70d3fd405f3eb6eab625814d105.zip
Merge branch 'lukas/r16b01/testcase-fixes/OTP-11138' into maint
* lukas/r16b01/testcase-fixes/OTP-11138: Do not fail if there is no variables file Run iter max ports on a seperate vm with smaller port table Set max ports for slave node Decrease sleep timer
Diffstat (limited to 'lib/test_server')
-rw-r--r--lib/test_server/src/ts_install_cth.erl4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/test_server/src/ts_install_cth.erl b/lib/test_server/src/ts_install_cth.erl
index 9b6e10e7e2..a75cae3c9d 100644
--- a/lib/test_server/src/ts_install_cth.erl
+++ b/lib/test_server/src/ts_install_cth.erl
@@ -103,7 +103,9 @@ pre_init_per_suite(_Suite,Config,State) ->
end,
{add_node_name(Config, State), State}
- catch Error:Reason ->
+ catch error:{badmatch,{error,enoent}} ->
+ {add_node_name(Config, State), State};
+ Error:Reason ->
Stack = erlang:get_stacktrace(),
ct:pal("~p failed! ~p:{~p,~p}",[?MODULE,Error,Reason,Stack]),
{{fail,{?MODULE,{Error,Reason, Stack}}},State}