Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorJeff Johnston2018-04-16 20:18:00 +0000
committerJeff Johnston2018-04-16 20:19:49 +0000
commit103f4cba4cdc3a1422a9df4dbacbbce4f06cfb00 (patch)
tree26f23cd8e3267e0c0068f2cd5578d8bc31cd2190 /build
parent2e99babe5bfda9c9e2d5bb4f53bab74ec1bcad6d (diff)
downloadorg.eclipse.cdt-103f4cba4cdc3a1422a9df4dbacbbce4f06cfb00.tar.gz
org.eclipse.cdt-103f4cba4cdc3a1422a9df4dbacbbce4f06cfb00.tar.xz
org.eclipse.cdt-103f4cba4cdc3a1422a9df4dbacbbce4f06cfb00.zip
Adjust Meson NewManuanNinjaTest
- test sometimes is printing extra info like level of ninja found Change-Id: I2622f79bfc8320a8bd2bf0f6b7a8fe3bb73de55f
Diffstat (limited to 'build')
-rw-r--r--build/org.eclipse.cdt.meson.ui.tests/src/org/eclipse/cdt/internal/meson/ui/tests/NewManualNinjaTest.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/build/org.eclipse.cdt.meson.ui.tests/src/org/eclipse/cdt/internal/meson/ui/tests/NewManualNinjaTest.java b/build/org.eclipse.cdt.meson.ui.tests/src/org/eclipse/cdt/internal/meson/ui/tests/NewManualNinjaTest.java
index 8197a8ddb0f..fc652583340 100644
--- a/build/org.eclipse.cdt.meson.ui.tests/src/org/eclipse/cdt/internal/meson/ui/tests/NewManualNinjaTest.java
+++ b/build/org.eclipse.cdt.meson.ui.tests/src/org/eclipse/cdt/internal/meson/ui/tests/NewManualNinjaTest.java
@@ -158,13 +158,13 @@ public class NewManualNinjaTest {
String[] lines = new String[0];
- while (lines.length < 12) {
+ while (lines.length < 15) {
String output = console.bot().styledText().getText();
lines = output.split("\\r?\\n"); //$NON-NLS-1$
bot.sleep(2000);
}
- bot.sleep(2000);
+ bot.sleep(3000);
assertEquals("Building in: " + projectPath + "/build/default", lines[0]);
assertEquals("The Meson build system", lines[2]);

Back to the top