update tests for 1.0 overhaul
[fleet.git] / tests / torpedo / test-tapl.fleet
1 #expect 20
2 #expect 30
3 #ship debug : Debug
4 #ship fifo  : Fifo
5 #ship fifo2 : Fifo
6
7 debug.in: [*] take, deliver;
8
9 fifo.out:
10   take, sendto debug.in;
11   wait;
12   literal 30;
13   sendto debug.in;
14
15 fifo.in:
16   load tapl with fifo.out;
17   [L] nop;
18   notify fifo2.out;
19   [I] [*] wait;
20   [+] literal 20;
21   [+] deliver;
22   tail;
23
24 fifo2.out:
25   wait;
26   notify fifo.in:i;
27
28