Skip to content

Commit

Permalink
Skip BTrace warnings in stderr
Browse files Browse the repository at this point in the history
  • Loading branch information
jbachorik committed Jan 24, 2021
1 parent c749545 commit 9e80cb2
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -243,9 +243,11 @@ public void run() {
try {
String l = null;
while ((l = stderrReader.readLine()) != null) {
if (!l.contains("Server VM warning")) {
testAppLatch.countDown();
if (l.contains("Server VM warning") ||
l.contains("XML libraries not available")) {
continue;
}
testAppLatch.countDown();
if (debugTestApp) {
System.err.println("[traced app] " + l);
}
Expand Down

0 comments on commit 9e80cb2

Please sign in to comment.