1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| | #! /usr/bin/python3
# SPDX-License-Identifier: GPL-2.0-or-later
#
# tasst - Test A Simple Socket Transport
# library of test helpers for passt & pasta
#
# tasst/meta - Test pieces of the test infrastructure.
#
# Usually, tests for the test infrastructure should go next to the
# implementation of the thing being tested. Sometimes that's not
# possible (usually because it would cause a circular module
# dependency). In that case those tests can go here.
#
# Copyright Red Hat
# Author: David Gibson <david@gibson.dropbear.id.au>
|