aboutsummaryrefslogtreecommitdiffhomepage
path: root/main_test.go
diff options
context:
space:
mode:
authorNia Waldvogel <[email protected]>2022-01-14 12:48:39 -0500
committerRon Evans <[email protected]>2022-01-16 22:02:30 +0100
commit431e223803e6701232ed4393067c352ef5b00ec4 (patch)
tree2505cc9fa4f3e381a8e8a00420866ed0c3d9ccc1 /main_test.go
parent1b4632445605601310e854ece28310bab511085d (diff)
downloadtinygo-431e223803e6701232ed4393067c352ef5b00ec4.tar.gz
tinygo-431e223803e6701232ed4393067c352ef5b00ec4.zip
main (test): skip AVR tests
The AVR tests fail inconsistently now due to non-deterministic backend bugs. This disables them until this can be understood and fixed.
Diffstat (limited to 'main_test.go')
-rw-r--r--main_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/main_test.go b/main_test.go
index 290955837..5abbc7711 100644
--- a/main_test.go
+++ b/main_test.go
@@ -135,8 +135,8 @@ func TestBuild(t *testing.T) {
t.Run("AVR", func(t *testing.T) {
// LLVM backend crash:
// LIBCLANG FATAL ERROR: Cannot select: t3: i16 = JumpTable<0>
- // This bug is non-deterministic, and only happens when run concurrently with non-AVR tests.
- // For this reason, we do not t.Parallel() here.
+ // This bug is non-deterministic.
+ t.Skip("skipped due to non-deterministic backend bugs")
var avrTests []string
for _, t := range tests {