diff options
author | Andrey Pampukha <[email protected]> | 2010-04-13 09:11:59 +0200 |
---|---|---|
committer | Raimo Niskanen <[email protected]> | 2010-06-09 16:19:18 +0200 |
commit | 2daac36809c14007d179a118784f48ceb79a30d1 (patch) | |
tree | e357965e790cc88a5a8c4dc8d12e5e2cff31a96d /lib/common_test/test | |
parent | 05f69de43fc8f95baab30e940cd80df86a433e1e (diff) | |
download | otp-2daac36809c14007d179a118784f48ceb79a30d1.tar.gz otp-2daac36809c14007d179a118784f48ceb79a30d1.tar.bz2 otp-2daac36809c14007d179a118784f48ceb79a30d1.zip |
Change monitor_master option to false by default
Diffstat (limited to 'lib/common_test/test')
-rw-r--r-- | lib/common_test/test/ct_master_SUITE.erl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/common_test/test/ct_master_SUITE.erl b/lib/common_test/test/ct_master_SUITE.erl index 3618b08a74..0f0d13f683 100644 --- a/lib/common_test/test/ct_master_SUITE.erl +++ b/lib/common_test/test/ct_master_SUITE.erl @@ -99,7 +99,8 @@ make_spec(DataDir, FileName, NodeNames, Suites, Config)-> NodeNames), NS = lists:map(fun(NodeName)-> - {node_start, NodeName, [{startup_functions, [{io, format, ["hello, world~n"]}]}]} + {node_start, NodeName, [{startup_functions, [{io, format, ["hello, world~n"]}]}, + {monitor_master, true}]} end, NodeNames), |