From 3b87547411301de2b14a83adaab53be627bb7d50 Mon Sep 17 00:00:00 2001 From: Fabian Homborg Date: Fri, 16 Apr 2021 08:53:27 +0200 Subject: [PATCH] Fix skipping locale tests on Github Actions --- tests/checks/locale.fish | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tests/checks/locale.fish b/tests/checks/locale.fish index 309aff511..01aff36b6 100644 --- a/tests/checks/locale.fish +++ b/tests/checks/locale.fish @@ -1,10 +1,8 @@ #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 +#REQUIRES: test -z "$GITHUB_WORKFLOW" + # 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.