Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorMarc Khouzam2014-11-04 13:52:48 +0000
committerMarc Khouzam2014-11-04 13:52:48 +0000
commitbb461328b9477ab9847498d8ba1a33fc410d419f (patch)
treeb3395757ef0c02071a00c5484deac12633adb70e /build
parent90e95ab4eb6c4aa06fd1b894255582964631e533 (diff)
downloadorg.eclipse.cdt-bb461328b9477ab9847498d8ba1a33fc410d419f.tar.gz
org.eclipse.cdt-bb461328b9477ab9847498d8ba1a33fc410d419f.tar.xz
org.eclipse.cdt-bb461328b9477ab9847498d8ba1a33fc410d419f.zip
Ignore autotools UI tests if automake is not installed
Change-Id: Ic00d77fffbcd471f08b29a1b78d7da23b32a1dcc Signed-off-by: Marc Khouzam <marc.khouzam@ericsson.com>
Diffstat (limited to 'build')
-rw-r--r--build/org.eclipse.cdt.autotools.ui.tests/src/org/eclipse/cdt/autotools/ui/tests/AllTests.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/build/org.eclipse.cdt.autotools.ui.tests/src/org/eclipse/cdt/autotools/ui/tests/AllTests.java b/build/org.eclipse.cdt.autotools.ui.tests/src/org/eclipse/cdt/autotools/ui/tests/AllTests.java
index bb972120f12..d5143ea62f6 100644
--- a/build/org.eclipse.cdt.autotools.ui.tests/src/org/eclipse/cdt/autotools/ui/tests/AllTests.java
+++ b/build/org.eclipse.cdt.autotools.ui.tests/src/org/eclipse/cdt/autotools/ui/tests/AllTests.java
@@ -31,9 +31,11 @@ public class AllTests {
// needed for this class to compile
@BeforeClass
public static void beforeClassMethod() {
- // Verify that the necessary binaries are available, and if it is not,
+ // Verify that the necessary binaries are available, and if they are not,
// the tests will be ignored.
- String[] testBinaryCommands = { "libtool --version", "autoconf --version" };
+ String[] testBinaryCommands = { "libtool --version",
+ "autoconf --version",
+ "automake --version" };
try {
for (String cmd : testBinaryCommands) {
Process process = ProcessFactory.getFactory().exec(cmd);

Back to the top