diff options
author | Björn-Egil Dahlberg <[email protected]> | 2016-04-22 16:04:15 +0200 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2016-04-22 16:04:15 +0200 |
commit | adafa09133e3d9ab473e6b69e1fc62a06637eca8 (patch) | |
tree | ad93e2ebed78bd2d2b2047cffd26e2ff664457ed /lib/runtime_tools/test | |
parent | 30626f6a17fb349909e6e2e9c3323ffc96e8b1c9 (diff) | |
download | otp-adafa09133e3d9ab473e6b69e1fc62a06637eca8.tar.gz otp-adafa09133e3d9ab473e6b69e1fc62a06637eca8.tar.bz2 otp-adafa09133e3d9ab473e6b69e1fc62a06637eca8.zip |
Eliminate use of test_server:fail/0,1
Diffstat (limited to 'lib/runtime_tools/test')
-rw-r--r-- | lib/runtime_tools/test/dbg_SUITE.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/runtime_tools/test/dbg_SUITE.erl b/lib/runtime_tools/test/dbg_SUITE.erl index 27c4c446f5..e049ca5048 100644 --- a/lib/runtime_tools/test/dbg_SUITE.erl +++ b/lib/runtime_tools/test/dbg_SUITE.erl @@ -110,7 +110,7 @@ tiny(Config) when is_list(Config) -> Pid ! {dbg_test, stop}; true -> ok=file:set_cwd(OldCurDir), - ?t:fail("Could not spawn external test process.~n"), + ct:fail("Could not spawn external test process.~n"), failure end after @@ -533,7 +533,7 @@ file_port_schedfix1(Config) when is_list(Config) -> if P > 100 -> Reason = {BottomLine, '>', "100%"}, erlang:display({file_port_schedfix, fail, Reason}), - test_server:fail(Reason); + ct:fail(Reason); true -> {comment, BottomLine} end. |