c873e8c854abd626429efb4650d4dbd7fd820d70
[deliverable/tracecompass.git] / lttng / org.eclipse.tracecompass.lttng2.ust.core.tests / src / org / eclipse / tracecompass / lttng2 / ust / core / tests / callstack / LttngUstCallStackProviderFastTest.java
1 /*******************************************************************************
2 * Copyright (c) 2013, 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 API and implementation
11 *******************************************************************************/
12
13 package org.eclipse.tracecompass.lttng2.ust.core.tests.callstack;
14
15 import org.eclipse.tracecompass.testtraces.ctf.CtfTestTrace;
16
17 /**
18 * Test suite for the UST callstack state provider, using the trace of a program
19 * instrumented with lttng-ust-cyg-profile-fast.so tracepoints. These do not
20 * contain the function addresses in the func_exit events.
21 *
22 * @author Alexandre Montplaisir
23 */
24 public class LttngUstCallStackProviderFastTest extends AbstractProviderTest {
25
26 private static final long[] timestamps = { 1379361250310000000L,
27 1379361250498400000L,
28 1379361250499759000L };
29
30 @Override
31 protected CtfTestTrace getTestTrace() {
32 return CtfTestTrace.CYG_PROFILE_FAST;
33 }
34
35 @Override
36 protected String getProcName() {
37 return "glxgears-29822";
38 }
39
40 @Override
41 protected long getTestTimestamp(int index) {
42 return timestamps[index];
43 }
44
45 }
This page took 0.032241 seconds and 5 git commands to generate.