mirror of
https://github.com/theupdateframework/python-tuf
synced 2026-05-24 10:08:28 +00:00
We want to make sure that server are successfully started in the common use cases and that the new port generation works. Signed-off-by: Martin Vrachev <mvrachev@vmware.com>
25 lines
354 B
Python
25 lines
354 B
Python
#!/usr/bin/env python
|
|
|
|
# Copyright 2020, TUF contributors
|
|
# SPDX-License-Identifier: MIT OR Apache-2.0
|
|
|
|
"""
|
|
<Program Name>
|
|
fast_server_exit.py
|
|
|
|
<Author>
|
|
Martin Vrachev.
|
|
|
|
<Started>
|
|
October 29, 2020.
|
|
|
|
<Copyright>
|
|
See LICENSE-MIT OR LICENSE for licensing information.
|
|
|
|
<Purpose>
|
|
Used for tests in tests/test_utils.py.
|
|
"""
|
|
|
|
import sys
|
|
|
|
sys.exit(0)
|