Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--autotools/org.eclipse.linuxtools.cdt.autotools.ui.tests/ChangeLog6
-rw-r--r--autotools/org.eclipse.linuxtools.cdt.autotools.ui.tests/src/org/eclipse/linuxtools/cdt/autotools/ui/tests/TestEnvironmentVars.java1
2 files changed, 7 insertions, 0 deletions
diff --git a/autotools/org.eclipse.linuxtools.cdt.autotools.ui.tests/ChangeLog b/autotools/org.eclipse.linuxtools.cdt.autotools.ui.tests/ChangeLog
index 3d765b9547..1692d4e2a8 100644
--- a/autotools/org.eclipse.linuxtools.cdt.autotools.ui.tests/ChangeLog
+++ b/autotools/org.eclipse.linuxtools.cdt.autotools.ui.tests/ChangeLog
@@ -1,3 +1,9 @@
+2012-02-28 Jeff Johnston <jjohnstn@redhat.com>
+
+ * plugin_customization.ini: New file.
+ * src/org/eclipse/linuxtools/cdt/autotools/ui/tests/TestEnvironmentVars.java (setEnvVarOnCommandLine): Make fake configure
+ file executable.
+
2012-02-24 Jeff Johnston <jjohnstn@redhat.com>
* plugin_customization.ini: New file.
diff --git a/autotools/org.eclipse.linuxtools.cdt.autotools.ui.tests/src/org/eclipse/linuxtools/cdt/autotools/ui/tests/TestEnvironmentVars.java b/autotools/org.eclipse.linuxtools.cdt.autotools.ui.tests/src/org/eclipse/linuxtools/cdt/autotools/ui/tests/TestEnvironmentVars.java
index e82da52c38..faa4b4576b 100644
--- a/autotools/org.eclipse.linuxtools.cdt.autotools.ui.tests/src/org/eclipse/linuxtools/cdt/autotools/ui/tests/TestEnvironmentVars.java
+++ b/autotools/org.eclipse.linuxtools.cdt.autotools.ui.tests/src/org/eclipse/linuxtools/cdt/autotools/ui/tests/TestEnvironmentVars.java
@@ -204,6 +204,7 @@ public class TestEnvironmentVars {
w.append("echo VAR6 is ${some_var6}");
w.newLine();
w.close();
+ f.setExecutable(true);
// Now change the configure script command to be the fake configure script
// and set the three envvars on the command itself
SWTBotView view = bot.viewByTitle("Project Explorer");

Back to the top