summaryrefslogtreecommitdiffstatshomepage
path: root/tests/thread/mutate_bytearray.py
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2016-05-31 17:36:06 +0100
committerDamien George <damien.p.george@gmail.com>2016-06-28 11:28:52 +0100
commit8b9ddf403119100d6bbd4c6d77bd4a334032b893 (patch)
tree68b05c53e303a69fe052271ea390a8395ce07cb8 /tests/thread/mutate_bytearray.py
parent63d05228a3173f079ea0a8f4fb11baa442351065 (diff)
downloadmicropython-8b9ddf403119100d6bbd4c6d77bd4a334032b893.tar.gz
micropython-8b9ddf403119100d6bbd4c6d77bd4a334032b893.zip
tests/thread: Allow some tests to run on ports with not much heap.
Diffstat (limited to 'tests/thread/mutate_bytearray.py')
-rw-r--r--tests/thread/mutate_bytearray.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/thread/mutate_bytearray.py b/tests/thread/mutate_bytearray.py
index 25f7c70714..f3276f1b2d 100644
--- a/tests/thread/mutate_bytearray.py
+++ b/tests/thread/mutate_bytearray.py
@@ -26,10 +26,11 @@ def th(n, lo, hi):
lock = _thread.allocate_lock()
n_thread = 4
n_finished = 0
+n_repeat = 4 # use 40 for more stressful test (uses more heap)
# spawn threads
for i in range(n_thread):
- _thread.start_new_thread(th, (40, i * 256 // n_thread, (i + 1) * 256 // n_thread))
+ _thread.start_new_thread(th, (n_repeat, i * 256 // n_thread, (i + 1) * 256 // n_thread))
# busy wait for threads to finish
while n_finished < n_thread: