Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: be785991e7f1f6f03f074a94570208fc48b292f4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/*******************************************************************************
 * Copyright (c) 2011, 2018 STMicroelectronics and others.
 *
 * This program and the accompanying materials are made
 * available under the terms of the Eclipse Public License 2.0
 * which is available at https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *    Xavier Raynaud <xavier.raynaud@st.com> - initial API and implementation
 *    Red Hat Inc. - ongoing maintenance
 *******************************************************************************/
package org.eclipse.linuxtools.internal.gcov.test;

public class GcovTestC extends GcovTest {

    @Override
    protected String getTestProjectName() {
        return "Gcov_C_test";
    }

    @Override
    protected String getBinName() {
        return "a.out";
    }

    @Override
    protected boolean getTestProducedReference() {
        return true;
    }

    @Override
    protected boolean useDefaultBin() {
        return true;
    }

}

Back to the top