We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 379e5ad commit 2aa77bcCopy full SHA for 2aa77bc
io.sloeber.tests/src/io/sloeber/core/RegressionTest.java
@@ -118,7 +118,11 @@ public void issue555() {
118
try {
119
theTestProject.build(IncrementalProjectBuilder.FULL_BUILD, monitor);
120
if (Shared.hasBuildErrors(theTestProject)) {
121
- fail("Failed to compile the project:" + projectName + " as teensy");
+ Shared.waitForAllJobsToFinish();
122
+ theTestProject.build(IncrementalProjectBuilder.FULL_BUILD, monitor);
123
+ if (Shared.hasBuildErrors(theTestProject)) {
124
+ fail("Failed to compile the project:" + projectName + " as teensy");
125
+ }
126
}
127
} catch (CoreException e) {
128
e.printStackTrace();
0 commit comments