diff options
author | Siri Hansen <[email protected]> | 2016-07-08 10:36:34 +0200 |
---|---|---|
committer | Siri Hansen <[email protected]> | 2016-07-08 10:36:34 +0200 |
commit | ebea63ee20e61464a471f88e670fe66e60830691 (patch) | |
tree | 20232b1d51fe8acf8c91c3ce0bd06f90a307ee05 /lib/sasl/test | |
parent | 7bc18a66e4603a39b765fb0607b90adb28cd3752 (diff) | |
download | otp-ebea63ee20e61464a471f88e670fe66e60830691.tar.gz otp-ebea63ee20e61464a471f88e670fe66e60830691.tar.bz2 otp-ebea63ee20e61464a471f88e670fe66e60830691.zip |
[sasl test] Skip tests on slow host
release_handler_SUITE:otp_9395_update_many_mods and
otp_9395_rm_many_mods often fail on test host 'nain' due to a very
slow sys call. These tests are now skipped on this host.
Diffstat (limited to 'lib/sasl/test')
-rw-r--r-- | lib/sasl/test/release_handler_SUITE.erl | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/sasl/test/release_handler_SUITE.erl b/lib/sasl/test/release_handler_SUITE.erl index 1469813a81..10d2539b7f 100644 --- a/lib/sasl/test/release_handler_SUITE.erl +++ b/lib/sasl/test/release_handler_SUITE.erl @@ -1063,6 +1063,12 @@ otp_9395_check_and_purge(cleanup,_Conf) -> %% OTP-9395 - performance problems when there are MANY processes %% Upgrade which updates many modules (brutal_purge) otp_9395_update_many_mods(Conf) when is_list(Conf) -> + + %% "nain" is very slow - it fails this test quite often due to a + %% long sys call + %% /proc/cpuinfo: "clock: 1249MHz" + inet:gethostname() == {ok,"nain"} andalso throw({skip,"slow test host"}), + %% Set some paths PrivDir = priv_dir(Conf), Dir = filename:join(PrivDir,"otp_9395_update_many_mods"), @@ -1162,6 +1168,12 @@ otp_9395_update_many_mods(cleanup,_Conf) -> %% OTP-9395 - performance problems when there are MANY processes %% Upgrade which removes many modules (brutal_purge) otp_9395_rm_many_mods(Conf) when is_list(Conf) -> + + %% "nain" is very slow - it fails this test quite often due to a + %% long sys call + %% /proc/cpuinfo: "clock: 1249MHz" + inet:gethostname() == {ok,"nain"} andalso throw({skip,"slow test host"}), + %% Set some paths PrivDir = priv_dir(Conf), Dir = filename:join(PrivDir,"otp_9395_rm_many_mods"), |