ctf: Move plugins to their own sub-directory
[deliverable/tracecompass.git] / org.eclipse.tracecompass.lttng2.ust.core.tests / src / org / eclipse / tracecompass / lttng2 / ust / core / tests / callstack / LttngUstCallStackProviderFastTest.java
CommitLineData
6e4358bd 1/*******************************************************************************
60ae41e1 2 * Copyright (c) 2013, 2014 Ericsson
6e4358bd
AM
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 API and implementation
11 *******************************************************************************/
12
116738ad 13package org.eclipse.tracecompass.lttng2.ust.core.tests.callstack;
6e4358bd 14
06004847
AM
15import static org.junit.Assume.assumeTrue;
16
2bdf0193 17import org.eclipse.tracecompass.tmf.ctf.core.tests.shared.CtfTmfTestTrace;
06004847 18import org.junit.BeforeClass;
6e4358bd
AM
19
20/**
21 * Test suite for the UST callstack state provider, using the trace of a program
22 * instrumented with lttng-ust-cyg-profile-fast.so tracepoints. These do not
23 * contain the function addresses in the func_exit events.
24 *
25 * @author Alexandre Montplaisir
26 */
50659279 27public class LttngUstCallStackProviderFastTest extends AbstractProviderTest {
6e4358bd 28
50659279
AM
29 private static final long[] timestamps = { 1379361250310000000L,
30 1379361250498400000L,
31 1379361250499759000L };
6e4358bd 32
06004847
AM
33 /**
34 * Class setup
35 */
36 @BeforeClass
37 public static void setUpClass() {
38 assumeTrue(CtfTmfTestTrace.CYG_PROFILE_FAST.exists());
39 }
40
50659279
AM
41 @Override
42 protected CtfTmfTestTrace getTestTrace() {
43 return CtfTmfTestTrace.CYG_PROFILE_FAST;
6e4358bd
AM
44 }
45
50659279
AM
46 @Override
47 protected String getProcName() {
48 return "glxgears-29822";
6e4358bd
AM
49 }
50
50659279
AM
51 @Override
52 protected long getTestTimestamp(int index) {
53 return timestamps[index];
6e4358bd
AM
54 }
55
50659279 56}
This page took 0.052286 seconds and 5 git commands to generate.