commit | aa67e4b2da33696dfc3f13bd943679098e70f20b | [log] [tgz] |
---|---|---|
author | Jeff Johnston <jjohnstn@redhat.com> | Tue Feb 28 18:02:25 2012 -0500 |
committer | Jeff Johnston <jjohnstn@redhat.com> | Tue Feb 28 18:17:13 2012 -0500 |
tree | f3edd6ae3234b8400068ae8a47ace03904b45a55 | |
parent | 9bd0adf77de59cd8f686fa4e6d01a101780744cb [diff] |
Fix Autotools UI tests. - add a plugin_customization.ini file for use with -pluginCustomization launch option - fix test which creates fake configure script to make it executable
diff --git a/autotools/org.eclipse.linuxtools.cdt.autotools.ui.tests/ChangeLog b/autotools/org.eclipse.linuxtools.cdt.autotools.ui.tests/ChangeLog index 3d765b9..1692d4e 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 e82da52..faa4b45 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 @@ 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");