From b579984f0a15fa33a5a87b11b4383d119698d99b Mon Sep 17 00:00:00 2001 From: Julius Milan Date: Thu, 11 May 2017 15:40:25 +0200 Subject: [PATCH] Fix abrt-adaptor config for cpp problems This modifies pattern for catching cpp problem messages produced by ABRT. Found that not all mentioned messages fit into former pattern. For example following is valid cpp problem message produced by ABRT: Process xxx (bad_binary) crashed in Will::Fail::a() [clone .isra.2]() but doesn't fit former pattern, since it's last part contains whitespaces. --- config/abrt-adaptor.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/abrt-adaptor.json b/config/abrt-adaptor.json index cdad01bf..59a87f1f 100644 --- a/config/abrt-adaptor.json +++ b/config/abrt-adaptor.json @@ -12,7 +12,7 @@ { "type": "temporary", "reason": "CCPPCrash", - "pattern": "Process \\d+ \\(\\S+\\) crashed in \\S+" + "pattern": "Process \\d+ \\(\\S+\\) crashed in .*" }, { "type": "temporary",