blob: a3f932502f67129bc912ce17612ae628573e6697 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2014, 2015 École Polytechnique de Montréal
*
* All rights reserved. This program and the accompanying materials are
* made available under the terms of the Eclipse Public License 2.0 which
* accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Geneviève Bastien - Initial API and implementation
*******************************************************************************/
package org.eclipse.tracecompass.alltests.perf;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
/**
* Master test suite for all Trace Compass performance tests.
*/
@RunWith(Suite.class)
@Suite.SuiteClasses({
org.eclipse.tracecompass.ctf.core.tests.perf.trace.TraceReadBenchmark.class,
org.eclipse.tracecompass.ctf.core.tests.perf.trace.TraceSeekBenchmark.class,
org.eclipse.tracecompass.lttng2.kernel.core.tests.perf.analysis.cpu.CPUAnalysisBenchmark.class,
org.eclipse.tracecompass.lttng2.kernel.core.tests.perf.analysis.execgraph.KernelExecutionGraphBenchmark.class,
org.eclipse.tracecompass.lttng2.kernel.core.tests.perf.analysis.kernel.KernelAnalysisBenchmark.class,
org.eclipse.tracecompass.lttng2.kernel.core.tests.perf.analysis.kernel.KernelAnalysisUsageBenchmark.class,
org.eclipse.tracecompass.lttng2.kernel.core.tests.perf.analysis.syscall.SystemCallAnalysisBenchmark.class,
org.eclipse.tracecompass.lttng2.kernel.core.tests.perf.analysis.syscall.SystemCallAnalysisUsageBenchmark.class,
org.eclipse.tracecompass.lttng2.kernel.core.tests.perf.analysis.tid.TidAnalysisUsageBenchmark.class,
org.eclipse.tracecompass.lttng2.kernel.core.tests.perf.analysis.xml.LttngKernelXmlAnalysisBenchmark.class,
org.eclipse.tracecompass.lttng2.kernel.core.tests.perf.analysis.StatisticsAnalysisBenchmark.class,
org.eclipse.tracecompass.lttng2.kernel.core.tests.perf.event.matching.EventMatchingBenchmark.class,
org.eclipse.tracecompass.lttng2.kernel.core.tests.perf.event.matching.TraceSynchronizationBenchmark.class,
org.eclipse.tracecompass.lttng2.ust.core.tests.perf.cygprofile.CallStackAndGraphBenchmark.class,
org.eclipse.tracecompass.pcap.core.tests.perf.trace.PcapReadBenchmark.class,
org.eclipse.tracecompass.pcap.core.tests.perf.trace.PcapSeekBenchmark.class,
org.eclipse.tracecompass.statesystem.core.tests.perf.historytree.HistoryTreeBackendBenchmark.class,
org.eclipse.tracecompass.tmf.core.tests.perf.synchronization.TimestampTransformBenchmark.class,
org.eclipse.tracecompass.tmf.ctf.core.tests.perf.experiment.ExperimentBenchmark.class
})
public class RunAllPerfTests {
}