2010-06-21 fchouinard@gmail.com Fix for Bug316276
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.tests / src / org / eclipse / linuxtools / tmf / tests / TmfCoreTestPlugin.java
index 3c607976630db8ee16f5f1a10b8ef7f18c48e9c1..ff7be5ff96d7eb5ef169aaec23075d31f849fbdc 100644 (file)
@@ -13,6 +13,7 @@
 package org.eclipse.linuxtools.tmf.tests;
 
 import org.eclipse.core.runtime.Plugin;
+import org.eclipse.linuxtools.tmf.Tracer;
 import org.osgi.framework.BundleContext;
 
 /**
@@ -69,10 +70,12 @@ public class TmfCoreTestPlugin extends Plugin {
        public void start(BundleContext context) throws Exception {
                super.start(context);
                setDefault(this);
+               Tracer.init();
        }
 
        @Override
        public void stop(BundleContext context) throws Exception {
+               Tracer.stop();
                setDefault(null);
                super.stop(context);
        }
This page took 0.027089 seconds and 5 git commands to generate.