Commit 3cc3ebd5 authored by Andrey Filippov's avatar Andrey Filippov

Modified WARNINGS regexp - was not providing link fro the problem in the first line

parent 5d32fdb2
...@@ -25,6 +25,9 @@ ...@@ -25,6 +25,9 @@
* include the source code for the parts of Eclipse or Eclipse plugins used * include the source code for the parts of Eclipse or Eclipse plugins used
* as well as that of the covered work.} * as well as that of the covered work.}
*******************************************************************************/ *******************************************************************************/
Warnings was (was in an attempt to catch "CRITICAL WARNING" too?):
default=".*([^ ]WARNING:) (\[.*\].*)\[(.*):([0-9]+)\]"
Problem was - missing 1-st line as group 0 had the previous end of line)
--> -->
<vdt-project> <vdt-project>
<tool name="VivadoToolPrototype" label="VivadoToolPrototype" <tool name="VivadoToolPrototype" label="VivadoToolPrototype"
...@@ -40,7 +43,7 @@ ...@@ -40,7 +43,7 @@
default=".*(ERROR:|CRITICAL WARNING:) (\[.*\].*)\[(.*):([0-9]+)\]" default=".*(ERROR:|CRITICAL WARNING:) (\[.*\].*)\[(.*):([0-9]+)\]"
visible="true" type="String" format="CopyValue"/> visible="true" type="String" format="CopyValue"/>
<parameter id="PatternWarnings" label="Warnings" tooltip= "Regular expression for warnings messages" <parameter id="PatternWarnings" label="Warnings" tooltip= "Regular expression for warnings messages"
default=".*([^ ]WARNING:) (\[.*\].*)\[(.*):([0-9]+)\]" default=".*(WARNING:) (\[.*\].*)\[(.*):([0-9]+)\]"
visible="true" type="String" format="CopyValue"/> visible="true" type="String" format="CopyValue"/>
<parameter id="PatternInfo" label="Info" tooltip= "Regular expression for info messages" <parameter id="PatternInfo" label="Info" tooltip= "Regular expression for info messages"
default=".*(INFO:) (\[.*\].*)\[(.*):([0-9]+)\]" default=".*(INFO:) (\[.*\].*)\[(.*):([0-9]+)\]"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment