3
0
mirror of https://github.com/pragma-/pbot.git synced 2024-10-01 17:16:39 +02:00

Update compiler watchdog

This commit is contained in:
Pragmatic Software 2017-09-08 05:32:10 -07:00
parent 9608cac9cb
commit 9ef69ec005

View File

@ -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;