Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Gvozdev2009-09-11 02:09:38 +0000
committerAndrew Gvozdev2009-09-11 02:09:38 +0000
commitdbbdbd8f95d06a6f008c5f066d1161bfc4e86a62 (patch)
tree9c125a727d3aa1c50dcae06431e6afe0b8bb841c /core/org.eclipse.cdt.core.tests/plugin.xml
parent64a0f77fafae191bbacd572be2223df88ee64219 (diff)
downloadorg.eclipse.cdt-dbbdbd8f95d06a6f008c5f066d1161bfc4e86a62.tar.gz
org.eclipse.cdt-dbbdbd8f95d06a6f008c5f066d1161bfc4e86a62.tar.xz
org.eclipse.cdt-dbbdbd8f95d06a6f008c5f066d1161bfc4e86a62.zip
bug 109139: Generic Error parser
(RegexErrorParser)
Diffstat (limited to 'core/org.eclipse.cdt.core.tests/plugin.xml')
-rw-r--r--core/org.eclipse.cdt.core.tests/plugin.xml17
1 files changed, 17 insertions, 0 deletions
diff --git a/core/org.eclipse.cdt.core.tests/plugin.xml b/core/org.eclipse.cdt.core.tests/plugin.xml
index 2ea4018d2dc..757b5f248e3 100644
--- a/core/org.eclipse.cdt.core.tests/plugin.xml
+++ b/core/org.eclipse.cdt.core.tests/plugin.xml
@@ -159,4 +159,21 @@
</run>
</filesystem>
</extension>
+ <extension
+ id="RegexErrorParserId"
+ name="Test Plugin RegexErrorParser"
+ point="org.eclipse.cdt.core.ErrorParser">
+ <errorparser
+ id="org.eclipse.cdt.core.tests.RegexErrorParserId"
+ name="Test Plugin RegexErrorParser">
+ <pattern
+ description-expr="$3"
+ eat-processed-line="true"
+ file-expr="$1"
+ line-expr="$2"
+ regex="(.*):(.*):regex (.*)"
+ severity="Error">
+ </pattern>
+ </errorparser>
+ </extension>
</plugin>

Back to the top