Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeff Johnston2018-03-27 23:46:24 +0000
committerJeff Johnston2018-03-27 23:46:24 +0000
commit1a05bf6910fb5bf5324a020f415b68e32551ef01 (patch)
tree2bd01fc91999a754591f4d31742c17dcbf1f8b6d /build/org.eclipse.cdt.meson.ui
parent980eb1b25c877eb57897270223726714241a2751 (diff)
downloadorg.eclipse.cdt-1a05bf6910fb5bf5324a020f415b68e32551ef01.tar.gz
org.eclipse.cdt-1a05bf6910fb5bf5324a020f415b68e32551ef01.tar.xz
org.eclipse.cdt-1a05bf6910fb5bf5324a020f415b68e32551ef01.zip
Add a new Meson property page test
- add NewMesonConfigureTest.java - fix extraneous "meson" string in console output when performing a meson configure - add new test to AutomatedIntegrationSuite for Meson UI test plug-in Change-Id: Ic10520a0d420d380df95117b69200409a48226b3
Diffstat (limited to 'build/org.eclipse.cdt.meson.ui')
-rw-r--r--build/org.eclipse.cdt.meson.ui/src/org/eclipse/cdt/meson/ui/properties/MesonPropertyPage.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/build/org.eclipse.cdt.meson.ui/src/org/eclipse/cdt/meson/ui/properties/MesonPropertyPage.java b/build/org.eclipse.cdt.meson.ui/src/org/eclipse/cdt/meson/ui/properties/MesonPropertyPage.java
index 7cd4d18105e..35cc5d9e310 100644
--- a/build/org.eclipse.cdt.meson.ui/src/org/eclipse/cdt/meson/ui/properties/MesonPropertyPage.java
+++ b/build/org.eclipse.cdt.meson.ui/src/org/eclipse/cdt/meson/ui/properties/MesonPropertyPage.java
@@ -272,10 +272,9 @@ public class MesonPropertyPage extends PropertyPage {
try (OutputStream stdout = console.getOutputStream()) {
OutputStream stderr = stdout;
StringBuilder buf = new StringBuilder();
- buf.append("meson");
for (String arg : args) {
- buf.append(" "); //$NON-NLS-1$
buf.append(arg);
+ buf.append(" "); //$NON-NLS-1$
}
buf.append(System.lineSeparator());
stdout.write(buf.toString().getBytes());

Back to the top