From f04112d258b8cab9b5b0fa1413d3385375d42d1c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Cl=C3=A9ment=20Chigot?= <clement.chigot@atos.net>
Date: Thu, 26 Nov 2020 13:37:19 +0100
Subject: [PATCH] libgo: force fail on TestFcntlFlock

---
 libgo/go/syscall/syscall_unix_test.go | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/libgo/go/syscall/syscall_unix_test.go b/libgo/go/syscall/syscall_unix_test.go
index b6dfd08d30a..0fe1f280f9e 100644
--- a/libgo/go/syscall/syscall_unix_test.go
+++ b/libgo/go/syscall/syscall_unix_test.go
@@ -72,6 +72,9 @@ func _() {
 // Thus this test also verifies that the Flock_t structure can be
 // roundtripped with F_SETLK and F_GETLK.
 func TestFcntlFlock(t *testing.T) {
+	if runtime.GOOS == "aix" {
+		t.Fatalf("TODO")
+	}
 	if runtime.GOOS == "ios" {
 		t.Skip("skipping; no child processes allowed on iOS")
 	}
-- 
2.31.1

