Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeff Johnston2012-02-28 23:02:25 +0000
committerJeff Johnston2012-02-28 23:17:13 +0000
commitaa67e4b2da33696dfc3f13bd943679098e70f20b (patch)
treef3edd6ae3234b8400068ae8a47ace03904b45a55
parent9bd0adf77de59cd8f686fa4e6d01a101780744cb (diff)
downloadorg.eclipse.linuxtools-stable-0.9.tar.gz
org.eclipse.linuxtools-stable-0.9.tar.xz
org.eclipse.linuxtools-stable-0.9.zip
Fix Autotools UI tests.stable-0.9
- add a plugin_customization.ini file for use with -pluginCustomization launch option - fix test which creates fake configure script to make it executable
-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