Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeffrey Overbey2012-05-03 19:38:47 +0000
committerJeffrey Overbey2012-05-03 19:38:47 +0000
commit2c4a44793ab066522f739e7a7b6061ed558166b0 (patch)
tree2b49becf77cf0523ebd6e42d0a811afc1641c495 /org.eclipse.photran.cdtinterface
parent471df488d26abf2509da38d1635e9a909f02b47a (diff)
downloadorg.eclipse.photran-2c4a44793ab066522f739e7a7b6061ed558166b0.tar.gz
org.eclipse.photran-2c4a44793ab066522f739e7a7b6061ed558166b0.tar.xz
org.eclipse.photran-2c4a44793ab066522f739e7a7b6061ed558166b0.zip
Cray error parser does not recognize THREAD (OpenMP) info type
Diffstat (limited to 'org.eclipse.photran.cdtinterface')
-rw-r--r--org.eclipse.photran.cdtinterface/src/org/eclipse/photran/internal/cdtinterface/errorparsers/CrayErrorParser.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.photran.cdtinterface/src/org/eclipse/photran/internal/cdtinterface/errorparsers/CrayErrorParser.java b/org.eclipse.photran.cdtinterface/src/org/eclipse/photran/internal/cdtinterface/errorparsers/CrayErrorParser.java
index 54eab262..f5981aae 100644
--- a/org.eclipse.photran.cdtinterface/src/org/eclipse/photran/internal/cdtinterface/errorparsers/CrayErrorParser.java
+++ b/org.eclipse.photran.cdtinterface/src/org/eclipse/photran/internal/cdtinterface/errorparsers/CrayErrorParser.java
@@ -91,7 +91,7 @@ public class CrayErrorParser implements IErrorParser {
private int determineSeverity(String text) {
if (text.equals("WARNING")) { //$NON-NLS-1$
return SEVERITY_WARNING;
- } else if (text.equals("IPA") || text.equals("SCALAR") || text.equals("VECTOR") || text.equals("ACCEL")) { //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
+ } else if (text.equals("SCALAR") || text.equals("VECTOR") || text.equals("IPA") || text.equals("THREAD") || text.equals("ACCEL")) { //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ //$NON-NLS-5$
return SEVERITY_INFO;
} else {
return SEVERITY_ERROR_RESOURCE;

Back to the top