From 25c819510dc08d11ce42c9700f6f5d7791118bca Mon Sep 17 00:00:00 2001 From: Marten Seemann Date: Sun, 5 Jan 2020 10:22:29 +0700 Subject: [PATCH] disable the version negotiation test --- README.md | 1 + testcases.py | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4a0d83f6..ca78dc22 100644 --- a/README.md +++ b/README.md @@ -40,6 +40,7 @@ The log files are saved to a directory named `#server_#client/#testcase`. `outpu The Interop Runner implements the following test cases. Unless noted otherwise, test cases use HTTP/0.9 for file transfers. More test cases will be added in the future, to test more protocol features. The name in parentheses is the value of the `TESTCASE` environment variable passed into your Docker container. * **Version Negotiation** (`versionnegotiation`): This test case tests that a server sends a Version Negotiation packet in response to an unknown QUIC version number. The client should start a connection using an unsupported version number (it can use a reserved version number to do so), and should abort the connection attempt when receiving the Version Negotiation packet. +Currently disabled due to #20. * **Handshake** (`handshake`): This test case tests the successful completion of the handshake. The client is expected to establish a single QUIC connection to the server and download one or multiple small files. Servers should not send a Retry packet in this test case. diff --git a/testcases.py b/testcases.py index 167350d9..8941fe93 100644 --- a/testcases.py +++ b/testcases.py @@ -328,7 +328,6 @@ def result(self) -> float: return self._result TESTCASES = [ - TestCaseVersionNegotiation, TestCaseHandshake, TestCaseTransfer, TestCaseRetry,