瀏覽代碼

fix stderr/stdout redirection in tests

Pi 2 月之前
父節點
當前提交
1b5d7c952f
共有 1 個文件被更改,包括 2 次插入2 次删除
  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