uncomment some tests that work now
[fleet.git] / tests / requeue / test-kill-requeueing.fleet
1 #expect 7
2 #expect 7
3 #expect 7
4 #expect 7
5 #expect 8
6
7 #ship debug        : Debug
8 #ship memory       : Memory
9 #ship fifo         : Fifo
10
11 debug.in: [*] take, deliver, notify fifo.in;
12
13 fifo.out:
14   notify fifo.in;
15   load repeat counter with 4; take, sendto debug.in;
16   notify memory.inCBD;
17   [*] take, sendto debug.in;
18
19 fifo.in:
20   clog;
21   load loop counter with 63;
22   take;
23   literal 7;
24   deliver;
25   unclog;
26
27 memory.inCBD:
28   take;
29   literal {
30     fifo.in:
31       massacre;   // extra instruction due to literal!
32       literal 8;
33       deliver;
34       notify memory.inCBD;
35         fifo.in: literal 8; [*] take, deliver;
36     memory.inCBD:
37       take;
38       literal {
39       }; deliver;
40   }; deliver;
41
42
43