blob: 846d6d50c25969b61a48f01e4407f1dba0c58b1d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import unittest
from test.support import import_helper
# Skip this test if the _testcapi module isn't available.
_testcapi = import_helper.import_module('_testcapi')
class PyAtomicTests(unittest.TestCase):
pass
for name in sorted(dir(_testcapi)):
if name.startswith('test_atomic'):
setattr(PyAtomicTests, name, getattr(_testcapi, name))
if __name__ == "__main__":
unittest.main()
|