summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorIngo Heimbach <i.heimbach@fz-juelich.de>2018-05-08 11:22:09 +0200
committerIngo Heimbach <i.heimbach@fz-juelich.de>2018-05-09 09:01:41 +0200
commit5fe74c7dc85952a4d902ec73ae1624c6940a995c (patch)
treee54fd7aab776377bc3d85ee174e18c70d7e9f311 /test
parent726a768464d3e42869088599cf1bd049f7a751df (diff)
downloadale-5fe74c7dc85952a4d902ec73ae1624c6940a995c.zip
Fatal GCC errors are handled as errors not warnings
Diffstat (limited to 'test')
-rw-r--r--test/handler/test_gcc_handler.vader14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/handler/test_gcc_handler.vader b/test/handler/test_gcc_handler.vader
index 79f17899..678d3f42 100644
--- a/test/handler/test_gcc_handler.vader
+++ b/test/handler/test_gcc_handler.vader
@@ -148,3 +148,17 @@ Execute(The GCC handler should interpret - as being the current file):
\ ale#handlers#gcc#HandleGCCFormat(347, [
\ '-:6:12: error: Some error',
\ ])
+
+Execute(The GCC handler should handle fatal error messages due to missing files):
+ AssertEqual
+ \ [
+ \ {
+ \ 'lnum': 3,
+ \ 'col': 12,
+ \ 'type': 'E',
+ \ 'text': 'foo.h: No such file or directory'
+ \ },
+ \ ],
+ \ ale#handlers#gcc#HandleGCCFormat(347, [
+ \ '<stdin>:3:12: fatal error: foo.h: No such file or directory',
+ \ ])