diff options
author | Björn Gustavsson <[email protected]> | 2016-04-18 08:14:19 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2016-04-18 08:14:19 +0200 |
commit | 575c1d99d37e541d802c51a62326b6faa3cffbf1 (patch) | |
tree | 7174e0f94d00bda30c719ee69d20b49bc8bf1178 /lib/debugger/test/exception_SUITE.erl | |
parent | 26c6f622ce12e865a229b51ff503f852df56d82d (diff) | |
download | otp-575c1d99d37e541d802c51a62326b6faa3cffbf1.tar.gz otp-575c1d99d37e541d802c51a62326b6faa3cffbf1.tar.bz2 otp-575c1d99d37e541d802c51a62326b6faa3cffbf1.zip |
Eliminate use of test_server:fail/{0,1}
Diffstat (limited to 'lib/debugger/test/exception_SUITE.erl')
-rw-r--r-- | lib/debugger/test/exception_SUITE.erl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/debugger/test/exception_SUITE.erl b/lib/debugger/test/exception_SUITE.erl index 9ae2730a61..1a72b3c525 100644 --- a/lib/debugger/test/exception_SUITE.erl +++ b/lib/debugger/test/exception_SUITE.erl @@ -147,7 +147,7 @@ pending_catched(First, Second, Expected) -> {'EXIT', Reason} -> pending(Reason, bad_guy, [First, Second], Expected); Other -> - test_server:fail({not_exit, Other}) + ct:fail({not_exit, Other}) end. pending_exit_message(Args, Expected) -> @@ -159,9 +159,9 @@ pending_exit_message(Args, Expected) -> {'EXIT', Pid, Reason} -> pending(Reason, bad_guy, Args, Expected); Other -> - test_server:fail({unexpected_message, Other}) + ct:fail({unexpected_message, Other}) after 10000 -> - test_server:fail(timeout) + ct:fail(timeout) end, process_flag(trap_exit, false). @@ -177,7 +177,7 @@ pending({Code,[{?MODULE,Func,Arity,_}|_]}, Func, Args, Code) when length(Args) == Arity -> ok; pending(Reason, _Function, _Args, _Code) -> - test_server:fail({bad_exit_reason,Reason}). + ct:fail({bad_exit_reason,Reason}). %% Test that doing arithmetics on [] gives a badarith EXIT and not a crash. |