bugfix
authorAdam Megacz <adam.megacz@sun.com>
Mon, 24 Nov 2008 19:54:25 +0000 (19:54 +0000)
committerAdam Megacz <adam.megacz@sun.com>
Mon, 24 Nov 2008 19:54:25 +0000 (19:54 +0000)
testCode/com/sun/vlsi/chips/marina/test/MarinaTest.java

index 54518e6..74b91f7 100644 (file)
@@ -1712,37 +1712,9 @@ public class MarinaTest {
         int olc = 3;
         prln("set olc="+olc);
         marina.instrIn.fill(new Instruction.Set(DOCK,false,Predicate.IgnoreOLC,SetDest.OuterLoopCounter,olc));
-            
-            prln("nop");
-            marina.instrIn.fill(new Instruction.Move(DOCK,
-                                                     false,                 /* requeueing  */
-                                                     Predicate.IgnoreOLC,   /* predicate   */
-                                                     torpedoable,           /* torpedoable */
-                                                     null,                  /* path        */
-                                                     false,                 /* tokenIn     */
-                                                     false,                 /* dataIn      */
-                                                     false,                 /* latchData   */
-                                                     false,                 /* latchPath   */
-                                                     false,                 /* dataOut     */
-                                                     false                  /* tokenOut    */
-                                                     ));
-            prln("send data");
-            marina.instrIn.fill(SEND_DATA);
-            
-            // expect nothing to come out, because the NOP is executing
-            dataItems = marina.data.drainMany(10);
-            fatal(dataItems.size()!=0, "Expected no data item(s) to emerge but got at least: "+dataItems.size()+" data items");
-            
-            prln("send torpedo");
-            marina.instrIn.fill(InstructionStopper.TORPEDO);
-            
-            int expected = torpedoable?1:0;
-            dataItems = marina.data.drainMany(2);
-            fatal(dataItems.size()!=expected, "Expected "+expected+" item to emerge but got: "+dataItems.size()+" data items");
-        }
 
         adjustIndent(-2);
-        prln("End testTorpedoOnAnInfiniteNop");
+        prln("End testOlcDecrementAtHighSpeed");
     }
 
     private void flipIlcBit(Marina marina) {