We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d74057 commit a04625bCopy full SHA for a04625b
2 files changed
autobahn/config/fuzzingserver.json
@@ -3,7 +3,6 @@
3
"outdir": "./reports",
4
"cases": ["*"],
5
"exclude-cases": [
6
- "9.*",
7
"12.*",
8
"13.*"
9
],
test/mint/web_socket/autobahn_test.exs
@@ -17,6 +17,10 @@ defmodule Mint.WebSocket.AutobahnTest do
17
for case_number <- Range.new(1, AutobahnClient.get_case_count()) do
18
info = AutobahnClient.get_case_info(case_number)
19
20
+ if String.starts_with?(info.id, "9.") do
21
+ @tag :performance
22
+ end
23
+
24
test inspect("case #{info.id} (##{case_number}): #{info.description}", printable_limit: 200) do
25
assert AutobahnClient.run_case(unquote(case_number)) == :ok
26
:ok = flush()
0 commit comments