From 49007891c893f3d7b493995dab01826cc1036fd1 Mon Sep 17 00:00:00 2001 From: Ayke van Laethem Date: Thu, 24 Nov 2022 21:06:37 +0100 Subject: [PATCH] all: re-enable AVR tests I have some confidence they'll work reliably now. --- main_test.go | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/main_test.go b/main_test.go index 62bd642e..af2a7c7f 100644 --- a/main_test.go +++ b/main_test.go @@ -134,10 +134,7 @@ 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. - t.Skip("skipped due to non-deterministic backend bugs") + t.Parallel() runPlatTests(optionsFromTarget("simavr", sema), tests, t) })