diff options
author | Anders Svensson <[email protected]> | 2015-06-15 17:48:11 +0200 |
---|---|---|
committer | Anders Svensson <[email protected]> | 2015-06-19 11:11:15 +0200 |
commit | 57019ff4590f96272adebbcd77e9c02a07719b03 (patch) | |
tree | 6d1df24a140226c6788504a9edfca7e8afbc5c44 | |
parent | aea4c4d4c3b4293ef401621bfd46b6ee5a87cf1b (diff) | |
download | otp-57019ff4590f96272adebbcd77e9c02a07719b03.tar.gz otp-57019ff4590f96272adebbcd77e9c02a07719b03.tar.bz2 otp-57019ff4590f96272adebbcd77e9c02a07719b03.zip |
Be less parallel in traffic suite
At the current count, there are 128 groups run in parallel, each of
which runs 52 testcases in parallel. That makes for 128*52 = 6656
testcases, which is probably also a factor in the sporadic failures
addressed by the parent commit. Don't run the 128 groups in parallel.
-rw-r--r-- | lib/diameter/test/diameter_traffic_SUITE.erl | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/lib/diameter/test/diameter_traffic_SUITE.erl b/lib/diameter/test/diameter_traffic_SUITE.erl index 17faf30a9b..74c162e16d 100644 --- a/lib/diameter/test/diameter_traffic_SUITE.erl +++ b/lib/diameter/test/diameter_traffic_SUITE.erl @@ -268,15 +268,15 @@ groups() -> SD <- ?STRING_DECODES, CD <- ?STRING_DECODES] ++ - [{traffic, [parallel], [{group, ?util:name([T,R,D,A,C,SD,CD])} - || T <- ?TRANSPORTS, - T /= sctp orelse Sctp, - R <- ?ENCODINGS, - D <- ?RFCS, - A <- ?ENCODINGS, - C <- ?CONTAINERS, - SD <- ?STRING_DECODES, - CD <- ?STRING_DECODES]}]. + [{traffic, [], [{group, ?util:name([T,R,D,A,C,SD,CD])} + || T <- ?TRANSPORTS, + T /= sctp orelse Sctp, + R <- ?ENCODINGS, + D <- ?RFCS, + A <- ?ENCODINGS, + C <- ?CONTAINERS, + SD <- ?STRING_DECODES, + CD <- ?STRING_DECODES]}]. init_per_group(Name, Config) -> case ?util:name(Name) of |