This repository was archived by the owner on Jul 22, 2023. It is now read-only.
forked from pythonnet/pythonnet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstresstest.py
More file actions
58 lines (46 loc) · 1.21 KB
/
stresstest.py
File metadata and controls
58 lines (46 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# FIXME: FAIL: testImplicitAssemblyLoad AssertionError: 0 != 1
"""Basic stress test."""
from __future__ import print_function
import gc
import time
import unittest
# import pdb
try:
import System
except ImportError:
print("Load clr import hook")
import clr
clr.AddReference("Python.Test")
clr.AddReference("System.Collections")
clr.AddReference("System.Data")
clr.AddReference("System.Management")
def main():
start = time.clock()
for i in range(2000):
print(i)
for name in (
'test_module',
'test_conversion',
# 'test_class',
'test_interface',
'test_enum',
'test_field',
'test_property',
'test_indexer',
'test_event',
'test_method',
# 'test_delegate',
'test_array',
):
module = __import__(name)
unittest.TextTestRunner().run(module.test_suite())
# pdb.set_trace()
stop = time.clock()
took = str(stop - start)
print('Total Time: {0}'.format(took))
for i in gc.get_objects():
print(i)
if __name__ == '__main__':
main()