OXIESEC PANEL
- Current Dir:
/
/
snap
/
core24
/
888
/
usr
/
lib
/
python3.12
/
test
/
libregrtest
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
03/18/2025 08:12:15 AM
rwxr-xr-x
📄
__init__.py
0 bytes
02/04/2025 02:48:35 PM
rw-r--r--
📁
__pycache__
-
03/18/2025 08:12:15 AM
rwxr-xr-x
📄
cmdline.py
23.04 KB
02/04/2025 02:48:35 PM
rw-r--r--
📄
filter.py
2.4 KB
02/04/2025 02:48:35 PM
rw-r--r--
📄
findtests.py
3.47 KB
02/04/2025 02:48:35 PM
rw-r--r--
📄
logger.py
2.69 KB
02/04/2025 02:48:35 PM
rw-r--r--
📄
main.py
25.68 KB
02/04/2025 02:48:35 PM
rw-r--r--
📄
mypy.ini
997 bytes
02/04/2025 02:48:35 PM
rw-r--r--
📄
pgo.py
1.37 KB
02/04/2025 02:48:35 PM
rw-r--r--
📄
refleak.py
7.81 KB
02/04/2025 02:48:35 PM
rw-r--r--
📄
result.py
7.03 KB
02/04/2025 02:48:35 PM
rw-r--r--
📄
results.py
8.91 KB
02/04/2025 02:48:35 PM
rw-r--r--
📄
run_workers.py
21.84 KB
02/04/2025 02:48:35 PM
rw-r--r--
📄
runtests.py
6.8 KB
02/04/2025 02:48:35 PM
rw-r--r--
📄
save_env.py
12.74 KB
02/04/2025 02:48:35 PM
rw-r--r--
📄
setup.py
4.89 KB
02/04/2025 02:48:35 PM
rw-r--r--
📄
single.py
10.4 KB
02/04/2025 02:48:35 PM
rw-r--r--
📄
testresult.py
6.09 KB
02/04/2025 02:48:35 PM
rw-r--r--
📄
tsan.py
700 bytes
02/04/2025 02:48:35 PM
rw-r--r--
📄
utils.py
21.2 KB
02/04/2025 02:48:35 PM
rw-r--r--
📄
win_utils.py
4.56 KB
02/04/2025 02:48:35 PM
rw-r--r--
📄
worker.py
3.09 KB
02/04/2025 02:48:35 PM
rw-r--r--
Editing: pgo.py
Close
# Set of tests run by default if --pgo is specified. The tests below were # chosen based on the following criteria: either they exercise a commonly used # C extension module or type, or they run some relatively typical Python code. # Long running tests should be avoided because the PGO instrumented executable # runs slowly. PGO_TESTS = [ 'test_array', 'test_base64', 'test_binascii', 'test_binop', 'test_bisect', 'test_bytes', 'test_bz2', 'test_cmath', 'test_codecs', 'test_collections', 'test_complex', 'test_dataclasses', 'test_datetime', 'test_decimal', 'test_difflib', 'test_embed', 'test_float', 'test_fstring', 'test_functools', 'test_generators', 'test_hashlib', 'test_heapq', 'test_int', 'test_itertools', 'test_json', 'test_long', 'test_lzma', 'test_math', 'test_memoryview', 'test_operator', 'test_ordered_dict', 'test_patma', 'test_pickle', 'test_pprint', 'test_re', 'test_set', 'test_sqlite3', 'test_statistics', 'test_struct', 'test_tabnanny', 'test_time', 'test_unicode', 'test_xml_etree', 'test_xml_etree_c', ] def setup_pgo_tests(cmdline_args, pgo_extended: bool): if not cmdline_args and not pgo_extended: # run default set of tests for PGO training cmdline_args[:] = PGO_TESTS[:]