From 9ef69ec005159a6cd1d69dcf8601ac0633722b5e Mon Sep 17 00:00:00 2001 From: Pragmatic Software Date: Fri, 8 Sep 2017 05:32:10 -0700 Subject: [PATCH] Update compiler watchdog --- modules/compiler_vm/compiler_watchdog.pl | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/modules/compiler_vm/compiler_watchdog.pl b/modules/compiler_vm/compiler_watchdog.pl index 96366ce3..f70113c5 100755 --- a/modules/compiler_vm/compiler_watchdog.pl +++ b/modules/compiler_vm/compiler_watchdog.pl @@ -89,6 +89,9 @@ sub execute { next if $line =~ m/libc_start_main/; next if $line =~ m/Thread debugging using libthread_db enabled/; next if $line =~ m/Using host libthread_db library/; + next if $line =~ m/\s*Catchpoint \d+/; + next if $line =~ m/Missing separate debuginfo/; + next if $line =~ m/^Try: dnf/; if($line =~ m/^\d+: (.*? = .*)/) { print "$opening$1$closing"; @@ -571,7 +574,7 @@ sub execute { next; } - next if $line =~ m/^\d+\s+void gdb\(\) {}/; + next if $line =~ m/^\d+\s+void gdb\(\) \{\}/; next if not length $line;