blob: 23582ac83c5324e6f99939ac2f4adb0edf55cc96 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010, 2015 Red Hat Inc..
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Red Hat Incorporated - initial API and implementation
* Marc Khouzam (Ericsson) - Skip tests if autotools binaries are not available
*******************************************************************************/
package org.eclipse.cdt.autotools.ui.tests;
import java.io.IOException;
import org.eclipse.cdt.autotools.ui.tests.autoconf.AutoconfTests;
import org.eclipse.cdt.utils.spawner.ProcessFactory;
import org.junit.Assume;
import org.junit.BeforeClass;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
@RunWith(Suite.class)
@Suite.SuiteClasses({
/*
*
* TestToolActions.class,
* TestEnvironmentVars.class,
* TestMakeTargets.class,
* SetConfigurationParameter.class,
*/
AutoconfTests.class })
public class AutomatedIntegrationSuite {
// needed for this class to compile
@BeforeClass
public static void beforeClassMethod() {
// Verify that the necessary binaries are available, and if they are not,
// the tests will be ignored.
String[] testBinaryCommands = { "libtool --version", "autoconf --version", "automake --version" };
try {
for (String cmd : testBinaryCommands) {
Process process = ProcessFactory.getFactory().exec(cmd);
process.destroy();
}
} catch (IOException e) {
// If we cannot find any binary, just ignore the tests.
Assume.assumeNoException(e);
}
}
}