diff options
author | Anders Svensson <anders@erlang.org> | 2020-06-30 13:25:34 +0200 |
---|---|---|
committer | Anders Svensson <anders@erlang.org> | 2022-03-17 10:50:19 +0100 |
commit | 815f50e2cf700ac283d151e02be23bf6cc23d0be (patch) | |
tree | 2be2462f91672a4b88495fcbcf9a2e129fc1f09d | |
parent | 3c68ceea1f93119bed871866c690fbf5a95048c1 (diff) | |
download | erlang-815f50e2cf700ac283d151e02be23bf6cc23d0be.tar.gz |
Skip diameter_gen_sctp_SUITE
Testcases in this suite have failed for almost 9 years now. Either
there's a reasonable explanation for it or no one is using gen_sctp
enough to notice/care, but the failures are just noise in diameter's
testing.
May only affect the loopback address, which would explain the lack of
interest.
-rw-r--r-- | lib/diameter/test/diameter.spec | 1 | ||||
-rw-r--r-- | lib/diameter/test/diameter_gh.spec | 4 |
2 files changed, 2 insertions, 3 deletions
diff --git a/lib/diameter/test/diameter.spec b/lib/diameter/test/diameter.spec index fae7863bec..be62bb7f2b 100644 --- a/lib/diameter/test/diameter.spec +++ b/lib/diameter/test/diameter.spec @@ -1 +1,2 @@ {suites, "../diameter_test", all}. +{skip_suites, "../diameter_test", [diameter_gen_sctp_SUITE], "Fails due to suspect gen_sctp behaviour."}. diff --git a/lib/diameter/test/diameter_gh.spec b/lib/diameter/test/diameter_gh.spec index 45adb931e1..9662044402 100644 --- a/lib/diameter/test/diameter_gh.spec +++ b/lib/diameter/test/diameter_gh.spec @@ -1,4 +1,2 @@ {suites, "../diameter_test", all}. -{skip_cases,"../diameter_test",diameter_gen_sctp_SUITE, - [send_one_from_many,send_many_from_one], - "SCTP does not work on Github actions"}. +{skip_suites, "../diameter_test", [diameter_gen_sctp_SUITE], "SCTP does not work on Github actions"}. |