diff options
author | Björn-Egil Dahlberg <[email protected]> | 2016-10-25 12:25:33 +0200 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2016-10-25 12:25:33 +0200 |
commit | 83043dc18536cfdfe9b472d97200ffa6667bf6b6 (patch) | |
tree | 08131ca31597cb037709fd8f52552af0d82577a3 /lib/mnesia | |
parent | 16b6c991cc841ced6be466eca774dba1188f8640 (diff) | |
download | otp-83043dc18536cfdfe9b472d97200ffa6667bf6b6.tar.gz otp-83043dc18536cfdfe9b472d97200ffa6667bf6b6.tar.bz2 otp-83043dc18536cfdfe9b472d97200ffa6667bf6b6.zip |
mnesia: Don't show error_logger messages in tests
Diffstat (limited to 'lib/mnesia')
-rw-r--r-- | lib/mnesia/test/mnesia_test_lib.erl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/mnesia/test/mnesia_test_lib.erl b/lib/mnesia/test/mnesia_test_lib.erl index 6e84a27ec9..0fabdc7929 100644 --- a/lib/mnesia/test/mnesia_test_lib.erl +++ b/lib/mnesia/test/mnesia_test_lib.erl @@ -263,6 +263,7 @@ slave_start_link(Host, Name, Retries) -> Path = code:get_path(), ok = rpc:call(NewNode, file, set_cwd, [Cwd]), true = rpc:call(NewNode, code, set_path, [Path]), + ok = rpc:call(NewNode, error_logger, tty, [false]), spawn_link(NewNode, ?MODULE, slave_sup, []), rpc:multicall([node() | nodes()], global, sync, []), {ok, NewNode}; |