blob: 8fd0ab1ea4a4c91121fdeb638d6a5d5b7a1ef8f8 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2014 Ericsson
*
* All rights reserved. This program and the accompanying materials are
* made available under the terms of the Eclipse Public License v1.0 which
* accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Alexandre Montplaisir - Initial implementation and API
*******************************************************************************/
package org.eclipse.tracecompass.ctf.core.tests.perf;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
/**
* Run all performance test suites.
*
* @author Alexandre Montplaisir
*/
@RunWith(Suite.class)
@Suite.SuiteClasses({
org.eclipse.tracecompass.ctf.core.tests.perf.trace.AllPerfTests.class
})
public class AllPerfTests {
}