32 lines
880 B
Diff
32 lines
880 B
Diff
From 88990f62cb88b2155dc65f2c2e4913e5fbd5476a Mon Sep 17 00:00:00 2001
|
|
From: Elliott Sales de Andrade <quantum.analyst@gmail.com>
|
|
Date: Wed, 12 Jun 2019 04:28:55 -0400
|
|
Subject: [PATCH 2/4] Skip ARM Linux tests.
|
|
|
|
We don't have the C library to do this.
|
|
|
|
Signed-off-by: Elliott Sales de Andrade <quantum.analyst@gmail.com>
|
|
---
|
|
main_test.go | 6 ------
|
|
1 file changed, 6 deletions(-)
|
|
|
|
diff --git a/main_test.go b/main_test.go
|
|
index 040e487..5ab606d 100644
|
|
--- a/main_test.go
|
|
+++ b/main_test.go
|
|
@@ -55,12 +55,6 @@ func TestCompiler(t *testing.T) {
|
|
})
|
|
|
|
if runtime.GOOS == "linux" {
|
|
- t.Run("ARMLinux", func(t *testing.T) {
|
|
- runPlatTests("arm--linux-none", matches, t)
|
|
- })
|
|
- t.Run("ARM64Linux", func(t *testing.T) {
|
|
- runPlatTests("aarch64--linux-gnu", matches, t)
|
|
- })
|
|
t.Run("WebAssembly", func(t *testing.T) {
|
|
runPlatTests("wasm", matches, t)
|
|
})
|
|
--
|
|
2.21.1
|
|
|