7d3b2bf38b2a82e265261426066996a3dbe2a013
[deliverable/tracecompass.git] / org.eclipse.tracecompass.lttng2.kernel.core.tests / perf / org / eclipse / tracecompass / lttng2 / kernel / core / tests / perf / AllPerfTests.java
1 /*******************************************************************************
2 * Copyright (c) 2014 Ericsson
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 * Alexandre Montplaisir - Initial implementation and API
11 *******************************************************************************/
12
13 package org.eclipse.tracecompass.lttng2.kernel.core.tests.perf;
14
15 import org.junit.runner.RunWith;
16 import org.junit.runners.Suite;
17
18 /**
19 * Run all performance test suites.
20 *
21 * @author Alexandre Montplaisir
22 */
23 @RunWith(Suite.class)
24 @Suite.SuiteClasses({
25 org.eclipse.tracecompass.lttng2.kernel.core.tests.perf.analysis.AllPerfTests.class,
26 org.eclipse.tracecompass.lttng2.kernel.core.tests.perf.event.matching.AllPerfTests.class
27 })
28 public class AllPerfTests {
29
30 }
This page took 0.038462 seconds and 4 git commands to generate.