diff options
author | Björn-Egil Dahlberg <[email protected]> | 2016-03-14 15:32:29 +0100 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2016-03-14 15:32:29 +0100 |
commit | 81a7427b7c4ddf91675e6257324bbc8d609b17e0 (patch) | |
tree | a3c85687df04a0ed57dc9d7d6804e63ee7075e19 | |
parent | ea6311e952b6e6b374c76c35b4851de98838cd25 (diff) | |
download | otp-81a7427b7c4ddf91675e6257324bbc8d609b17e0.tar.gz otp-81a7427b7c4ddf91675e6257324bbc8d609b17e0.tar.bz2 otp-81a7427b7c4ddf91675e6257324bbc8d609b17e0.zip |
Tweak port_SUITE
-rw-r--r-- | erts/emulator/test/port_SUITE.erl | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/erts/emulator/test/port_SUITE.erl b/erts/emulator/test/port_SUITE.erl index c3ea0fb5c9..328641f5b9 100644 --- a/erts/emulator/test/port_SUITE.erl +++ b/erts/emulator/test/port_SUITE.erl @@ -74,7 +74,7 @@ %% --export([all/0, suite/0,groups/0,init_per_group/2,end_per_group/2, +-export([all/0, suite/0, groups/0, init_per_testcase/2, end_per_testcase/2, init_per_suite/1, end_per_suite/1, stream_small/1, stream_big/1, @@ -129,12 +129,6 @@ groups() -> {multiple_packets, [], [mul_basic, mul_slow_writes]}, {tps, [], [tps_16_bytes, tps_1K]}]. -init_per_group(_GroupName, Config) -> - Config. - -end_per_group(_GroupName, Config) -> - Config. - init_per_testcase(Case, Config) -> [{testcase, Case} |Config]. @@ -914,6 +908,7 @@ try_bad_env(Env) -> %% Test that we can handle a very very large environment gracefully. huge_env(Config) when is_list(Config) -> + ct:timetrap({seconds, 30}), Vars = case os:type() of {win32,_} -> 500; _ -> |