summaryrefslogtreecommitdiff
path: root/tests/simple_send0_eth0_1s1r/receiver.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/simple_send0_eth0_1s1r/receiver.py')
-rw-r--r--tests/simple_send0_eth0_1s1r/receiver.py23
1 files changed, 0 insertions, 23 deletions
diff --git a/tests/simple_send0_eth0_1s1r/receiver.py b/tests/simple_send0_eth0_1s1r/receiver.py
deleted file mode 100644
index 3f7a7db..0000000
--- a/tests/simple_send0_eth0_1s1r/receiver.py
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/usr/bin/env python
-
-def receive(api):
- ##### Simple receive
- code, data=api.receive("eth0")
- msg="Received: "+data if code == 0 else "Receive failed code="+str(code)
- api.log(msg)
-
-def execute(api):
- receive(api)
- # Simulated time t=0s here
- receive(api)
- # Simulated time t=0s here
- receive(api)
- # Simulated time t=1s here
- receive(api)
- # Simulated time t=3s here
- code, data=api.receivet("eth0",0)
- msg="Received: "+data if code == 0 else "Receive failed code="+str(code)
- api.log(msg)
- # Simulated time t=3s here
-
-