gdbtrace: Move plugins to the Trace Compass namespace
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.ust.core.tests / src / org / eclipse / linuxtools / lttng2 / ust / core / tests / trace / callstack / LttngUstCallStackProviderFastTest.java
index 8f45e00f24f4b9ce2c0f72b4237ce59a0074ca15..fccfd93ec2781f7a9d7d7a123b2b6101feb3a88b 100644 (file)
 
 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 setUpClass() {
+        assumeTrue(CtfTmfTestTrace.CYG_PROFILE_FAST.exists());
+    }
+
     @Override
     protected CtfTmfTestTrace getTestTrace() {
         return CtfTmfTestTrace.CYG_PROFILE_FAST;
This page took 0.027263 seconds and 5 git commands to generate.