lttng: Add System Call Analysis benchmarks
[deliverable/tracecompass.git] / releng / org.eclipse.tracecompass.alltests / src / org / eclipse / tracecompass / alltests / perf / RunAllPerfTests.java
CommitLineData
088b4f19 1/*******************************************************************************
2c7fb5af 2 * Copyright (c) 2014, 2015 École Polytechnique de Montréal
088b4f19
GB
3 *
4 * All rights reserved. This program and the accompanying materials are
5 * made available under the terms of the Eclipse Public License v1.0 which
6 * accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 *
9 * Contributors:
10 * Geneviève Bastien - Initial API and implementation
11 *******************************************************************************/
12
730dbd2a 13package org.eclipse.tracecompass.alltests.perf;
088b4f19
GB
14
15import org.junit.runner.RunWith;
16import org.junit.runners.Suite;
17
18/**
2c7fb5af 19 * Master test suite for all Trace Compass performance tests.
088b4f19
GB
20 */
21@RunWith(Suite.class)
22@Suite.SuiteClasses({
b0d2c558
AM
23 org.eclipse.tracecompass.ctf.core.tests.perf.trace.TraceReadBenchmark.class,
24 org.eclipse.tracecompass.ctf.core.tests.perf.trace.TraceSeekBenchmark.class,
25
e34d62dc 26 org.eclipse.tracecompass.lttng2.kernel.core.tests.perf.analysis.kernel.KernelAnalysisBenchmark.class,
d646e624 27 org.eclipse.tracecompass.lttng2.kernel.core.tests.perf.analysis.kernel.KernelAnalysisUsageBenchmark.class,
f42989ac 28 org.eclipse.tracecompass.lttng2.kernel.core.tests.perf.analysis.syscall.SystemCallAnalysisBenchmark.class,
d646e624 29 org.eclipse.tracecompass.lttng2.kernel.core.tests.perf.analysis.tid.TidAnalysisUsageBenchmark.class,
b0d2c558
AM
30 org.eclipse.tracecompass.lttng2.kernel.core.tests.perf.analysis.StatisticsAnalysisBenchmark.class,
31 org.eclipse.tracecompass.lttng2.kernel.core.tests.perf.event.matching.EventMatchingBenchmark.class,
32 org.eclipse.tracecompass.lttng2.kernel.core.tests.perf.event.matching.TraceSynchronizationBenchmark.class,
33
34 org.eclipse.tracecompass.pcap.core.tests.perf.trace.PcapReadBenchmark.class,
35 org.eclipse.tracecompass.pcap.core.tests.perf.trace.PcapSeekBenchmark.class,
36
6545af8e
GB
37 org.eclipse.tracecompass.statesystem.core.tests.perf.historytree.HistoryTreeBackendBenchmark.class,
38
b0d2c558
AM
39 org.eclipse.tracecompass.tmf.core.tests.perf.synchronization.TimestampTransformBenchmark.class,
40
41 org.eclipse.tracecompass.tmf.ctf.core.tests.perf.experiment.ExperimentBenchmark.class
088b4f19
GB
42})
43public class RunAllPerfTests {
44
45}
This page took 0.051586 seconds and 5 git commands to generate.