summaryrefslogtreecommitdiff
path: root/tests/dd/not-rewound
diff options
context:
space:
mode:
Diffstat (limited to 'tests/dd/not-rewound')
-rwxr-xr-xtests/dd/not-rewound2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/dd/not-rewound b/tests/dd/not-rewound
index 284dd4a1a..5364f907f 100755
--- a/tests/dd/not-rewound
+++ b/tests/dd/not-rewound
@@ -23,7 +23,7 @@ print_ver_ dd
echo abcde > in
(dd skip=1 count=1 bs=1; dd skip=1 bs=1) < in > out 2> /dev/null || fail=1
-case `cat out` in
+case $(cat out) in
bde) ;;
*) fail=1 ;;
esac