Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'lttng/org.eclipse.linuxtools.lttng2.ust.core.tests/src/org/eclipse/linuxtools/lttng2/ust/core/tests/trace/callstack/LttngUstCallStackProviderFastTest.java')
-rw-r--r--lttng/org.eclipse.linuxtools.lttng2.ust.core.tests/src/org/eclipse/linuxtools/lttng2/ust/core/tests/trace/callstack/LttngUstCallStackProviderFastTest.java11
1 files changed, 11 insertions, 0 deletions
diff --git a/lttng/org.eclipse.linuxtools.lttng2.ust.core.tests/src/org/eclipse/linuxtools/lttng2/ust/core/tests/trace/callstack/LttngUstCallStackProviderFastTest.java b/lttng/org.eclipse.linuxtools.lttng2.ust.core.tests/src/org/eclipse/linuxtools/lttng2/ust/core/tests/trace/callstack/LttngUstCallStackProviderFastTest.java
index 8f45e00f24..8b64be217e 100644
--- a/lttng/org.eclipse.linuxtools.lttng2.ust.core.tests/src/org/eclipse/linuxtools/lttng2/ust/core/tests/trace/callstack/LttngUstCallStackProviderFastTest.java
+++ b/lttng/org.eclipse.linuxtools.lttng2.ust.core.tests/src/org/eclipse/linuxtools/lttng2/ust/core/tests/trace/callstack/LttngUstCallStackProviderFastTest.java
@@ -12,7 +12,10 @@
package org.eclipse.linuxtools.lttng2.ust.core.tests.trace.callstack;
+import static org.junit.Assume.assumeTrue;
+
import org.eclipse.linuxtools.tmf.ctf.core.tests.shared.CtfTmfTestTrace;
+import org.junit.BeforeClass;
/**
* Test suite for the UST callstack state provider, using the trace of a program
@@ -27,6 +30,14 @@ public class LttngUstCallStackProviderFastTest extends AbstractProviderTest {
1379361250498400000L,
1379361250499759000L };
+ /**
+ * Class setup
+ */
+ @BeforeClass
+ public static void initialize() {
+ assumeTrue(CtfTmfTestTrace.CYG_PROFILE_FAST.exists());
+ }
+
@Override
protected CtfTmfTestTrace getTestTrace() {
return CtfTmfTestTrace.CYG_PROFILE_FAST;

Back to the top