Skip to content
Snippets Groups Projects
Commit 0df99067 authored by Christian Wulf's avatar Christian Wulf
Browse files

signal order test is now ignored

parent c51c2e8e
No related branches found
No related tags found
No related merge requests found
......@@ -24,7 +24,7 @@ public final class Delay<T> extends AbstractStage {
Long timestampTrigger = this.timestampTriggerInputPort.receive();
if (null == timestampTrigger) {
returnNoElement();
return; // BETTER use returnNoElement(). so far, RunnableProducerStages cannot handle the NOT_ENOUGH__INPUT_EXCEPTION
}
sendAllBufferedEllements();
......
......@@ -4,6 +4,7 @@ import java.util.ArrayList;
import java.util.List;
import org.junit.Assert;
import org.junit.Ignore;
import org.junit.Test;
import teetime.framework.AbstractInterThreadPipe;
......@@ -16,6 +17,8 @@ import teetime.framework.signal.ValidatingSignal;
public class SpScPipeTest {
@Ignore
// ignore as long as this test passes null ports to SpScPipe
@Test
public void testSignalOrdering() throws Exception {
OutputPort<Object> sourcePort = null;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment