diff options
author | w0rp <devw0rp@gmail.com> | 2017-10-25 23:43:09 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-10-25 23:43:09 +0100 |
commit | da365134b537b00966ba6de1b6184e9fd76e4733 (patch) | |
tree | 5c025345cd684c5c057965c2302720b103b8a8c9 /test | |
parent | 7eb16836d09f3f847165b1e48fc020ecff2e715e (diff) | |
download | ale-da365134b537b00966ba6de1b6184e9fd76e4733.zip |
Fix an exception with notes with no previous message
Diffstat (limited to 'test')
-rw-r--r-- | test/handler/test_gcc_handler.vader | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/handler/test_gcc_handler.vader b/test/handler/test_gcc_handler.vader index be9e90ee..321dbc6e 100644 --- a/test/handler/test_gcc_handler.vader +++ b/test/handler/test_gcc_handler.vader @@ -128,3 +128,11 @@ Execute(The GCC handler should handle syntax errors): \ '<stdin>:4: error: ''cat'' was not declared in this scope', \ '<stdin>:12: error: expected `;'' before ''o''', \ ]) + +Execute(The GCC handler should handle notes with no previous message): + AssertEqual + \ [], + \ ale#handlers#gcc#HandleGCCFormat(347, [ + \ '<stdin>:1:1: note: x', + \ '<stdin>:1:1: note: x', + \ ]) |