summaryrefslogtreecommitdiff
path: root/functional_tests/test_multiprocessing/support/concurrent_shared/test.py
diff options
context:
space:
mode:
Diffstat (limited to 'functional_tests/test_multiprocessing/support/concurrent_shared/test.py')
-rw-r--r--functional_tests/test_multiprocessing/support/concurrent_shared/test.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/functional_tests/test_multiprocessing/support/concurrent_shared/test.py b/functional_tests/test_multiprocessing/support/concurrent_shared/test.py
new file mode 100644
index 0000000..5bc21f6
--- /dev/null
+++ b/functional_tests/test_multiprocessing/support/concurrent_shared/test.py
@@ -0,0 +1,11 @@
+#from . import counter
+from time import sleep
+#_multiprocess_can_split_ = True
+class Test1(object):
+ def test1(self):
+ sleep(1)
+ pass
+class Test2(object):
+ def test2(self):
+ sleep(1)
+ pass