summaryrefslogtreecommitdiffstatshomepage
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/extmod/asyncio_threadsafeflag.py13
-rw-r--r--tests/extmod/asyncio_threadsafeflag.py.exp2
2 files changed, 0 insertions, 15 deletions
diff --git a/tests/extmod/asyncio_threadsafeflag.py b/tests/extmod/asyncio_threadsafeflag.py
index 46da1b7b48..e8798afcf5 100644
--- a/tests/extmod/asyncio_threadsafeflag.py
+++ b/tests/extmod/asyncio_threadsafeflag.py
@@ -16,17 +16,6 @@ except AttributeError:
raise SystemExit
-try:
- # Unix port can't select/poll on user-defined types.
- import select
-
- poller = select.poll()
- poller.register(asyncio.ThreadSafeFlag())
-except TypeError:
- print("SKIP")
- raise SystemExit
-
-
async def task(id, flag):
print("task", id)
await flag.wait()
@@ -34,9 +23,7 @@ async def task(id, flag):
def set_from_schedule(flag):
- print("schedule")
flag.set()
- print("schedule done")
async def main():
diff --git a/tests/extmod/asyncio_threadsafeflag.py.exp b/tests/extmod/asyncio_threadsafeflag.py.exp
index 757115ac4b..0c62eae9d0 100644
--- a/tests/extmod/asyncio_threadsafeflag.py.exp
+++ b/tests/extmod/asyncio_threadsafeflag.py.exp
@@ -9,8 +9,6 @@ yield
task 2
set event
yield
-schedule
-schedule done
wait task
task 2 done
----