aboutsummaryrefslogtreecommitdiff
path: root/tests/misc/recursion.py
diff options
context:
space:
mode:
authorDamien George2018-04-10 14:42:42 +1000
committerDamien George2018-04-10 14:43:52 +1000
commit5ad27d4b8bb248954d98178e068a382599dadfa6 (patch)
tree0b9827eefb7d588728fb57325d87cd0bb896357d /tests/misc/recursion.py
parent605fdcf754c2c3f80f71e2dc83dcb3a4e74e5d95 (diff)
tests: Move recursive tests to the tests/stress/ subdir.
Keeping all the stress related tests in one place makes it easier to stress-test a given port, and to also not run such tests on ports that can't handle them.
Diffstat (limited to 'tests/misc/recursion.py')
-rw-r--r--tests/misc/recursion.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/tests/misc/recursion.py b/tests/misc/recursion.py
deleted file mode 100644
index 227f48396..000000000
--- a/tests/misc/recursion.py
+++ /dev/null
@@ -1,7 +0,0 @@
-def foo():
- foo()
-
-try:
- foo()
-except RuntimeError:
- print("RuntimeError")