-
-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: add --must-include flag Introduce new command line flag `--must-include`. When running the QUIC Interop Runner in CI of a single implementation, one is only interested in test pairs including that particular implementation. As an example, take a world with 3 QUIC implementations, quic-go, ngtcp2 and neqo. On the neqo CI one is not interested in the client-server pair quic-go->ngtcp2. With this commit one can specify `--must-include neqo` on neqo's CI. ``` $ python3 run.py --test handshake --must-include neqo Saving logs to logs_2024-02-24T17:39:08. Server: neqo. Client: quic-go. Running test case: handshake Server: neqo. Client: ngtcp2. Running test case: handshake Server: quic-go. Client: neqo. Running test case: handshake Server: ngtcp2. Client: neqo. Running test case: handshake Server: neqo. Client: neqo. Running test case: handshake Run took 0:01:50.070133 +---------+------+---------+--------+ | | neqo | quic-go | ngtcp2 | +---------+------+---------+--------+ | quic-go | ✓(H) | | | | | ?() | | | | | ✕() | | | +---------+------+---------+--------+ | ngtcp2 | ✓(H) | | | | | ?() | | | | | ✕() | | | +---------+------+---------+--------+ | neqo | ✓(H) | ✓(H) | ✓(H) | | | ?() | ?() | ?() | | | ✕() | ✕() | ✕() | +---------+------+---------+--------+ ``` * yapf fmt
- Loading branch information
Showing
2 changed files
with
137 additions
and
110 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters