From 83e53ea83ab77628d90fc4695f3a38e96c72e2f4 Mon Sep 17 00:00:00 2001 From: Sidharth Kshatriya Date: Fri, 17 Dec 2021 11:56:25 +0530 Subject: [PATCH] OpenBSD sh compat workaround: Move `&` within subshell invocation. Also see #2955 --- test/regression/3398-readonly-fifo-failure/rc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/regression/3398-readonly-fifo-failure/rc b/test/regression/3398-readonly-fifo-failure/rc index 67641227..45a4fdd9 100644 --- a/test/regression/3398-readonly-fifo-failure/rc +++ b/test/regression/3398-readonly-fifo-failure/rc @@ -1,2 +1,2 @@ -nop %sh{ mkfifo test-fifo; ( printf 'blah' > test-fifo ) /dev/null 2>&1 & } +nop %sh{ mkfifo test-fifo; ( printf 'blah' > test-fifo & ) /dev/null 2>&1 } edit -readonly -fifo test-fifo out