From fff158fd2bba2c51ba55aea2b10bbf32a8e387c7 Mon Sep 17 00:00:00 2001 From: Fabian Homborg Date: Thu, 15 Apr 2021 17:25:39 +0200 Subject: [PATCH] tests: Disable locale.fish on Github Actions Sometimes hangs with tsan. Works around #7934. --- tests/checks/locale.fish | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/tests/checks/locale.fish b/tests/checks/locale.fish index 87a653821..309aff511 100644 --- a/tests/checks/locale.fish +++ b/tests/checks/locale.fish @@ -1,4 +1,11 @@ #RUN: %fish -C "set fish %fish" %s + +# This hangs when running on github actions with tsan for unknown reasons, +# see #7934. +if set -q GITHUB_WORKFLOW + exit 0 +end + # A function to display bytes, necessary because GNU and BSD implementations of `od` have different output. # We used to use xxd, but it's not available everywhere. See #3797. #