X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=org.eclipse.linuxtools.lttng2.kernel.core.tests%2Fsrc%2Forg%2Feclipse%2Flinuxtools%2Flttng2%2Fkernel%2Fcore%2Ftests%2Fstateprovider%2FStateSystemFullHistoryTest.java;h=f3919ff60835e93ab07cd08fcf7e54842eaf8616;hb=f1f86dfb492c7e41eb81a62c651b26e7b4fdb406;hp=fef9fb672d23d6daeacba9f1f1627206e0244953;hpb=e54c68b71ac4334820ec8fe7752a2f65854a8d8f;p=deliverable%2Ftracecompass.git diff --git a/org.eclipse.linuxtools.lttng2.kernel.core.tests/src/org/eclipse/linuxtools/lttng2/kernel/core/tests/stateprovider/StateSystemFullHistoryTest.java b/org.eclipse.linuxtools.lttng2.kernel.core.tests/src/org/eclipse/linuxtools/lttng2/kernel/core/tests/stateprovider/StateSystemFullHistoryTest.java index fef9fb672d..f3919ff608 100644 --- a/org.eclipse.linuxtools.lttng2.kernel.core.tests/src/org/eclipse/linuxtools/lttng2/kernel/core/tests/stateprovider/StateSystemFullHistoryTest.java +++ b/org.eclipse.linuxtools.lttng2.kernel.core.tests/src/org/eclipse/linuxtools/lttng2/kernel/core/tests/stateprovider/StateSystemFullHistoryTest.java @@ -27,7 +27,7 @@ import org.eclipse.linuxtools.tmf.core.exceptions.TimeRangeException; import org.eclipse.linuxtools.tmf.core.exceptions.TmfTraceException; import org.eclipse.linuxtools.tmf.core.interval.ITmfStateInterval; import org.eclipse.linuxtools.tmf.core.statesystem.IStateChangeInput; -import org.eclipse.linuxtools.tmf.core.statesystem.IStateSystemQuerier; +import org.eclipse.linuxtools.tmf.core.statesystem.ITmfStateSystem; import org.eclipse.linuxtools.tmf.core.statesystem.StateSystemManager; import org.junit.AfterClass; import org.junit.BeforeClass; @@ -47,7 +47,7 @@ public class StateSystemFullHistoryTest { static File stateFileBenchmark; static IStateChangeInput input; - static IStateSystemQuerier ssq; + static ITmfStateSystem ssq; /* Offset in the trace + start time of the trace */ private final static long interestingTimestamp1 = 18670067372290L + 1331649577946812237L; @@ -89,7 +89,7 @@ public class StateSystemFullHistoryTest { @Test public void testBuild() throws TmfTraceException { IStateChangeInput input2; - IStateSystemQuerier ssb2; + ITmfStateSystem ssb2; input2 = new CtfKernelStateInput(CtfTestFiles.getTestTrace()); ssb2 = StateSystemManager.loadStateHistory(stateFileBenchmark, input2, true); @@ -100,7 +100,7 @@ public class StateSystemFullHistoryTest { @Test public void testOpenExistingStateFile() throws TmfTraceException { - IStateSystemQuerier ssb2; + ITmfStateSystem ssb2; /* 'newStateFile' should have already been created */ ssb2 = StateSystemManager.loadStateHistory(stateFile, null, true);