commit 8c1c50d22cf687b1c71ba761ca621bbbf964d425
parent 662a454673e4a96419d38e246b87d3c09930465d
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date: Sat, 11 Jan 2025 07:39:42 +0100
tests/make: Remove unneeded redirections
Diffstat:
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/tests/make/execute/0098-signal.sh b/tests/make/execute/0098-signal.sh
@@ -14,7 +14,7 @@ rm -f file.txt
trap 'cleanup 0' EXIT
trap 'cleanup 1' INT TERM HUP
-scc make -f - <<'EOF' 2>&1 &
+scc make -f - <<'EOF' &
file.txt:
@touch $@
@while : ; do sleep 1 ; done
diff --git a/tests/make/execute/0102-signal.sh b/tests/make/execute/0102-signal.sh
@@ -14,7 +14,7 @@ rm -rf adir
trap 'cleanup 0' EXIT
trap 'cleanup 1' INT TERM HUP
-scc make -f - <<'EOF' 2>&1 &
+scc make -f - <<'EOF' &
adir:
@mkdir $@
@while : ; do sleep 1 ; done