update tests to remove use of [Rq] flag
[fleet.git] / tests / requeue / test-requeue.fleet
index 0752a24..2f0e1d8 100644 (file)
 #expect 42
 #expect 46
 
-#ship alu   : Alu2
+#ship alu   : Alu
 #ship debug : Debug
 
-alu.inOp:  set word= Alu2.inOp[ADD];
+alu.inOp:  set word=Alu.inOp[ADD];
            set ilc=*;  deliver;
 
-debug.in:  set ilc=*;  recv, deliver, send token to alu.out;
+debug.in:  set ilc=41;  recv, deliver, send token to alu.out;
 
 alu.in2:   set word= 4;
            set ilc=*;  deliver;
 
 alu.out:   set olc=40;
-           [Rq] collect, send to alu.in1;
-           [Rq] send to debug.in;
-           [Rq] recv token;
+           head;
+           collect, send to alu.in1;
+           send to debug.in;
+           recv token;
            tail;
 
 alu.in1:   set word= 2;
            set ilc=4;
            deliver;
            set olc=2;
-           [Rq] recv, deliver;
-           [Rq] recv nothing, deliver;
+           head;
+           recv, deliver;
+           recv nothing, deliver;
            tail;