Commit | Line | Data |
---|---|---|
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 | 13 | package org.eclipse.tracecompass.alltests.perf; |
088b4f19 GB |
14 | |
15 | import org.junit.runner.RunWith; | |
16 | import 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 | ||
26 | org.eclipse.tracecompass.lttng2.kernel.core.tests.perf.analysis.AnalysisBenchmark.class, | |
27 | org.eclipse.tracecompass.lttng2.kernel.core.tests.perf.analysis.StatisticsAnalysisBenchmark.class, | |
28 | org.eclipse.tracecompass.lttng2.kernel.core.tests.perf.event.matching.EventMatchingBenchmark.class, | |
29 | org.eclipse.tracecompass.lttng2.kernel.core.tests.perf.event.matching.TraceSynchronizationBenchmark.class, | |
30 | ||
31 | org.eclipse.tracecompass.pcap.core.tests.perf.trace.PcapReadBenchmark.class, | |
32 | org.eclipse.tracecompass.pcap.core.tests.perf.trace.PcapSeekBenchmark.class, | |
33 | ||
34 | org.eclipse.tracecompass.tmf.core.tests.perf.synchronization.TimestampTransformBenchmark.class, | |
35 | ||
36 | org.eclipse.tracecompass.tmf.ctf.core.tests.perf.experiment.ExperimentBenchmark.class | |
088b4f19 GB |
37 | }) |
38 | public class RunAllPerfTests { | |
39 | ||
40 | } |