Fix activator plug-in IDs
[deliverable/tracecompass.git] / org.eclipse.tracecompass.alltests / src / org / eclipse / tracecompass / alltests / perf / RunAllPerfTests.java
CommitLineData
088b4f19
GB
1/*******************************************************************************
2 * Copyright (c) 2014 É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
730dbd2a 13package org.eclipse.tracecompass.alltests.perf;
088b4f19
GB
14
15import org.junit.runner.RunWith;
16import org.junit.runners.Suite;
17
18/**
19 * Master test suite for all Linux Tools LTTng performance tests.
20 */
21@RunWith(Suite.class)
22@Suite.SuiteClasses({
f357bcd4 23 org.eclipse.tracecompass.ctf.core.tests.perf.AllPerfTests.class,
9bc60be7 24 org.eclipse.tracecompass.lttng2.kernel.core.tests.perf.AllPerfTests.class,
71f2817f 25 org.eclipse.tracecompass.pcap.core.tests.perf.AllPerfTests.class,
2bdf0193
AM
26 org.eclipse.tracecompass.tmf.core.tests.perf.AllPerfTests.class,
27 org.eclipse.tracecompass.tmf.ctf.core.tests.perf.AllPerfTests.class
088b4f19
GB
28})
29public class RunAllPerfTests {
30
31}
This page took 0.040774 seconds and 5 git commands to generate.