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