Skip to content
Snippets Groups Projects
Commit 15e68277 authored by Damien George's avatar Damien George
Browse files

tests/thread: Make sure that thread tests don't rely on floating point.

parent 5b7789d5
No related branches found
No related tags found
No related merge requests found
......@@ -252,4 +252,4 @@ if __name__ == '__main__':
for i in range(n_thread):
_thread.start_new_thread(thread_entry, ())
while count.value < n_thread:
time.sleep(0.1)
time.sleep(1)
......@@ -15,5 +15,5 @@ _thread.start_new_thread(thread_entry, ())
_thread.start_new_thread(thread_entry, ())
# wait for threads to finish
time.sleep(0.2)
time.sleep(1)
print('done')
......@@ -15,5 +15,5 @@ _thread.start_new_thread(thread_entry, ())
_thread.start_new_thread(thread_entry, ())
# wait for threads to finish
time.sleep(0.2)
time.sleep(1)
print('done')
......@@ -20,5 +20,5 @@ for i in range(4):
_thread.start_new_thread(thread_entry, ())
# wait for threads to finish
time.sleep(0.2)
time.sleep(1)
print('done')
......@@ -24,5 +24,5 @@ for i in range(n_thread):
# wait for threads to finish
while n_finished < n_thread:
time.sleep(0.1)
time.sleep(1)
print('done', n_thread)
......@@ -19,5 +19,5 @@ _thread.start_new_thread(thread_entry, (10,))
_thread.start_new_thread(thread_entry, (20,))
# wait for threads to finish
time.sleep(0.2)
time.sleep(1)
print('done')
......@@ -15,5 +15,5 @@ def thread_entry(a0, a1, a2, a3):
_thread.start_new_thread(thread_entry, (10, 20), {'a2': 0, 'a3': 1})
# wait for thread to finish
time.sleep(0.2)
time.sleep(1)
print('done')
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment