From 157056ecdf378898996ba095c3d7bcf625368103 Mon Sep 17 00:00:00 2001 From: Damien George Date: Tue, 15 Mar 2016 13:20:18 +0000 Subject: tests: Add new subdir "stress/" specifically for stress tests. --- tests/stress/dict_copy.py | 7 +++++++ tests/stress/dict_create.py | 8 ++++++++ tests/stress/list_sort.py | 6 ++++++ 3 files changed, 21 insertions(+) create mode 100644 tests/stress/dict_copy.py create mode 100644 tests/stress/dict_create.py create mode 100644 tests/stress/list_sort.py (limited to 'tests/stress') diff --git a/tests/stress/dict_copy.py b/tests/stress/dict_copy.py new file mode 100644 index 000000000..36db9bb7e --- /dev/null +++ b/tests/stress/dict_copy.py @@ -0,0 +1,7 @@ +# copying a large dictionary + +a = {i:2*i for i in range(1000)} +b = a.copy() +for i in range(1000): + print(i, b[i]) +print(len(b)) diff --git a/tests/stress/dict_create.py b/tests/stress/dict_create.py new file mode 100644 index 000000000..e9db40a8e --- /dev/null +++ b/tests/stress/dict_create.py @@ -0,0 +1,8 @@ +# create a large dictionary + +d = {} +x = 1 +while x < 1000: + d[x] = x + x += 1 +print(d[500]) diff --git a/tests/stress/list_sort.py b/tests/stress/list_sort.py new file mode 100644 index 000000000..3a7701a1e --- /dev/null +++ b/tests/stress/list_sort.py @@ -0,0 +1,6 @@ +# test large list sorting (should not stack overflow) +l = list(range(2000)) +l.sort() +print(l[0], l[-1]) +l.sort(reverse=True) +print(l[0], l[-1]) -- cgit v1.2.3