Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 02f089071dcb1a42d9bf173913c592db3068a3f9 (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
/*******************************************************************************
 * Copyright (c) 2011-2015 STMicroelectronics and others.
 * 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:
 *    Xavier Raynaud <xavier.raynaud@st.com> - initial API and implementation
 *    Red Hat Inc. - ongoing maintenance
 *******************************************************************************/
package org.eclipse.linuxtools.internal.gcov.test;

public class GcovTestCPP extends GcovTest {

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

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

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

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

}

Back to the top