summaryrefslogtreecommitdiff
path: root/tests/thread/stress_aes.py
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2016-05-31 11:54:34 +0100
committerDamien George <damien.p.george@gmail.com>2016-06-28 11:28:52 +0100
commit15e68277c109d238bfb9c5bb8ab7db2f89e24c26 (patch)
tree023e40d54bf2e2f470e9f35f5b23b0af4b1586af /tests/thread/stress_aes.py
parent5b7789d519be7251c58b68879f013d5f3bf0c950 (diff)
tests/thread: Make sure that thread tests don't rely on floating point.
Diffstat (limited to 'tests/thread/stress_aes.py')
-rw-r--r--tests/thread/stress_aes.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/thread/stress_aes.py b/tests/thread/stress_aes.py
index 6ef285595..ecc963c92 100644
--- a/tests/thread/stress_aes.py
+++ b/tests/thread/stress_aes.py
@@ -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)