circuitpython/tests/thread/thread_qstr1.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
889 B
Python
Raw Permalink Normal View History

# test concurrent interning of strings
#
2020-06-03 18:40:05 -04:00
# SPDX-FileCopyrightText: Copyright (c) 2016 Damien P. George on behalf of Pycom Ltd
#
# SPDX-License-Identifier: MIT
2023-08-22 11:15:46 -04:00
import time
import _thread
2023-02-01 03:08:41 -05:00
# function to check the interned string
def check(s, val):
assert type(s) == str
assert int(s) == val
2021-03-15 09:57:36 -04:00
# main thread function
def th(base, n):
for i in range(n):
# this will intern the string and check it
exec("check('%u', %u)" % (base + i, base + i))
with lock:
global n_finished
n_finished += 1
2021-03-15 09:57:36 -04:00
lock = _thread.allocate_lock()
n_thread = 4
n_finished = 0
2021-03-15 09:57:36 -04:00
n_qstr_per_thread = 100 # make 1000 for a more stressful test (uses more heap)
# spawn threads
for i in range(n_thread):
_thread.start_new_thread(th, (i * n_qstr_per_thread, n_qstr_per_thread))
# wait for threads to finish
while n_finished < n_thread:
time.sleep(1)
2021-03-15 09:57:36 -04:00
print("pass")