39 lines
1.1 KiB
Diff
39 lines
1.1 KiB
Diff
From 4aef9745a245596f8f8781481f2d734318999074 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 insertions(+)
|
|
|
|
diff --git a/main_test.go b/main_test.go
|
|
index c65c463..46bdbd1 100644
|
|
--- a/main_test.go
|
|
+++ b/main_test.go
|
|
@@ -68,6 +68,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
|
|
}
|
|
@@ -78,6 +81,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.1
|
|
|