X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=tests%2Fcolliding-tokens.test;h=682d781765dfac5b72571889eee359bd127dcb28;hb=57722675592b6e01d4e1be7632994e60bd1cf1f0;hp=3c83b54352d37cc09f05543a8d629b34f7ddbc7c;hpb=11bf1a9f0e4b2b8d77ce7394e25b9db9dc3927f7;p=fleet.git diff --git a/tests/colliding-tokens.test b/tests/colliding-tokens.test index 3c83b54..682d781 100644 --- a/tests/colliding-tokens.test +++ b/tests/colliding-tokens.test @@ -4,16 +4,16 @@ #expect 2 #ship debug : Debug -#ship alu : Alu2 +#ship alu : Alu // attempts to get tokens to "collide" in the switch fabric debug.in: - literal 2; - [*] wait, deliver; + set word= 2; + set ilc=*; recv token, deliver; -alu.inOp: deliver; notify debug.in; -alu.in1: deliver; notify debug.in; -alu.in2: deliver; notify debug.in; -alu.out: collect; notify debug.in; +alu.inOp: set word=Alu.inOp[ADD]; deliver; send token to debug.in; +alu.in1: deliver; send token to debug.in; +alu.in2: deliver; send token to debug.in; +alu.out: collect; send token to debug.in;