diff options
author | Ayke van Laethem <[email protected]> | 2024-07-12 17:05:04 +0200 |
---|---|---|
committer | Ron Evans <[email protected]> | 2024-07-20 14:30:34 +0200 |
commit | f4ce11ef37ea155ccf04e43590739a893b98a865 (patch) | |
tree | 77f43c5444c069bbf255817d8fb292f59bd678ea /errors_test.go | |
parent | a5f78a390065204d161fa80d0cfa83f9d0268d85 (diff) | |
download | tinygo-f4ce11ef37ea155ccf04e43590739a893b98a865.tar.gz tinygo-f4ce11ef37ea155ccf04e43590739a893b98a865.zip |
main: add error tests for the compiler
The compiler can in fact return errors, but these weren't tested yet.
Diffstat (limited to 'errors_test.go')
-rw-r--r-- | errors_test.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/errors_test.go b/errors_test.go index d671e7335..1d29236ca 100644 --- a/errors_test.go +++ b/errors_test.go @@ -17,6 +17,7 @@ import ( func TestErrors(t *testing.T) { for _, name := range []string{ "cgo", + "compiler", "interp", "loader-importcycle", "loader-invaliddep", |