ctf: Depend on the tracecompass-test-traces project
[deliverable/tracecompass.git] / lttng / org.eclipse.tracecompass.lttng2.ust.core.tests / src / org / eclipse / tracecompass / lttng2 / ust / core / tests / callstack / LttngUstCallStackProviderTest.java
CommitLineData
6e4358bd 1/*******************************************************************************
50659279 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
c4d57ac1 15import org.eclipse.tracecompass.testtraces.ctf.CtfTestTrace;
6e4358bd
AM
16
17/**
18 * Test suite for the UST callstack state provider, using the trace of a program
19 * instrumented with lttng-ust-cyg-profile.so tracepoints.
20 *
21 * @author Alexandre Montplaisir
22 */
50659279 23public class LttngUstCallStackProviderTest extends AbstractProviderTest {
6e4358bd 24
50659279
AM
25 private static final long[] timestamps = { 1378850463600000000L,
26 1378850463770000000L,
27 1378850463868753000L };
6e4358bd 28
50659279 29 @Override
c4d57ac1
AM
30 protected CtfTestTrace getTestTrace() {
31 return CtfTestTrace.CYG_PROFILE;
6e4358bd
AM
32 }
33
50659279
AM
34 @Override
35 protected String getProcName() {
36 return "glxgears-16073";
6e4358bd
AM
37 }
38
50659279
AM
39 @Override
40 protected long getTestTimestamp(int index) {
41 return timestamps[index];
6e4358bd
AM
42 }
43
6e4358bd 44}
This page took 0.057111 seconds and 5 git commands to generate.