a71a3d321d20294c09e36ba503104abb4462c109
[deliverable/tracecompass.git] / releng / org.eclipse.tracecompass.alltests / src / org / eclipse / tracecompass / alltests / perf / RunAllPerfTests.java
1 /*******************************************************************************
2 * Copyright (c) 2014, 2015 École Polytechnique de Montréal
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
13 package org.eclipse.tracecompass.alltests.perf;
14
15 import org.junit.runner.RunWith;
16 import org.junit.runners.Suite;
17
18 /**
19 * Master test suite for all Trace Compass performance tests.
20 */
21 @RunWith(Suite.class)
22 @Suite.SuiteClasses({
23 org.eclipse.tracecompass.ctf.core.tests.perf.trace.TraceReadBenchmark.class,
24 org.eclipse.tracecompass.ctf.core.tests.perf.trace.TraceSeekBenchmark.class,
25
26 org.eclipse.tracecompass.lttng2.kernel.core.tests.perf.analysis.kernel.KernelAnalysisBenchmark.class,
27 org.eclipse.tracecompass.lttng2.kernel.core.tests.perf.analysis.kernel.KernelAnalysisUsageBenchmark.class,
28 org.eclipse.tracecompass.lttng2.kernel.core.tests.perf.analysis.tid.TidAnalysisUsageBenchmark.class,
29 org.eclipse.tracecompass.lttng2.kernel.core.tests.perf.analysis.StatisticsAnalysisBenchmark.class,
30 org.eclipse.tracecompass.lttng2.kernel.core.tests.perf.event.matching.EventMatchingBenchmark.class,
31 org.eclipse.tracecompass.lttng2.kernel.core.tests.perf.event.matching.TraceSynchronizationBenchmark.class,
32
33 org.eclipse.tracecompass.pcap.core.tests.perf.trace.PcapReadBenchmark.class,
34 org.eclipse.tracecompass.pcap.core.tests.perf.trace.PcapSeekBenchmark.class,
35
36 org.eclipse.tracecompass.statesystem.core.tests.perf.historytree.HistoryTreeBackendBenchmark.class,
37
38 org.eclipse.tracecompass.tmf.core.tests.perf.synchronization.TimestampTransformBenchmark.class,
39
40 org.eclipse.tracecompass.tmf.ctf.core.tests.perf.experiment.ExperimentBenchmark.class
41 })
42 public class RunAllPerfTests {
43
44 }
This page took 0.03933 seconds and 4 git commands to generate.