From 5bf48c1186762b66b39676cf4c00be714d401ec3 Mon Sep 17 00:00:00 2001 From: Pádraig Brady Date: Sat, 5 Mar 2011 09:53:00 +0000 Subject: maint: fix dd nocache test to be independent of current stdin * tests/dd/nocache: Don't assume stdin is a pipe --- tests/dd/nocache | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/dd/nocache b/tests/dd/nocache index b0d4cc107..b5afabd35 100755 --- a/tests/dd/nocache +++ b/tests/dd/nocache @@ -23,7 +23,7 @@ print_ver_ dd dd iflag=nocache oflag=nocache if=/dev/null of=/dev/null || fail=1 # We should get an error for trying to process a pipe -dd iflag=nocache count=0 && fail=1 +dd count=0 | dd iflag=nocache count=0 && fail=1 # O_DIRECT is orthogonal to drop cache so mutually exclusive dd iflag=nocache,direct if=/dev/null && fail=1 -- cgit v1.2.3-54-g00ecf