Browse Source

fix stderr/stdout redirection in tests

Pi 2 tháng trước cách đây
mục cha
commit
1b5d7c952f
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      tests/test.sh

+ 2 - 2
tests/test.sh

@@ -6,8 +6,8 @@ FILTER="${1:-}"
 : "${DEBUG:=false}"
 if "$DEBUG"
 then
-	REDIR1="&1"
-	REDIR2="&2"
+	REDIR1=/proc/self/fd/1
+	REDIR2=/proc/self/fd/2
 else
 	REDIR1=/dev/null
 	REDIR2=/dev/null