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);