Blob Blame History Raw
From c949e0e97fcb8716a7848bee3ef4c97123ac78ea 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 3/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 insertions(+)

diff --git a/main_test.go b/main_test.go
index f0d403c..0f28752 100644
--- a/main_test.go
+++ b/main_test.go
@@ -66,6 +66,9 @@ func TestCompiler(t *testing.T) {
 	if runtime.GOOS == "linux" {
 		t.Log("running tests for linux/arm...")
 		for _, path := range matches {
+			if true {
+				continue
+			}
 			if path == filepath.Join("testdata", "cgo")+string(filepath.Separator) {
 				continue // TODO: improve CGo
 			}
@@ -76,6 +79,9 @@ func TestCompiler(t *testing.T) {
 
 		t.Log("running tests for linux/arm64...")
 		for _, path := range matches {
+			if true {
+				continue
+			}
 			if path == filepath.Join("testdata", "cgo")+string(filepath.Separator) {
 				continue // TODO: improve CGo
 			}
-- 
2.21.0