From 431e223803e6701232ed4393067c352ef5b00ec4 Mon Sep 17 00:00:00 2001 From: Nia Waldvogel Date: Fri, 14 Jan 2022 12:48:39 -0500 Subject: [PATCH] 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. --- main_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main_test.go b/main_test.go index 29095583..5abbc771 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 {