update bitfile and list of tests that work
[fleet.git] / tests / stack / stack-test.fleet
1 #ship stack : Stack
2 #ship debug : Debug
3
4 #expect 4
5 #expect 3
6 #expect 2
7 #expect 1
8 #expect 0
9
10 debug.in:  [*] take, deliver;
11 stack.push: [5] take, deliver; notify stack.pop;
12
13 stack.pop: wait; [*] take, sendto debug.in;
14
15 0: sendto stack.push;
16 1: sendto stack.push;
17 2: sendto stack.push;
18 3: sendto stack.push;
19 4: sendto stack.push;
20
21
22
23
24