diff options
author | Jim Meyering <jim@meyering.net> | 2003-12-19 16:13:28 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-12-19 16:13:28 +0000 |
commit | 5b4206c91483145c7986e5eec24376c5c3c680ec (patch) | |
tree | b88c5ceb6ceee2f2d506d36166eef7872623334c /tests | |
parent | 3d8e62a14b36095e03dcd0adf3dd879d2e0fd52a (diff) | |
download | coreutils-5b4206c91483145c7986e5eec24376c5c3c680ec.tar.xz |
Double quote back-ticked expression,
in case it ends up having an unexpected value.
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/misc/nohup | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/misc/nohup b/tests/misc/nohup index 36a965556..220545189 100755 --- a/tests/misc/nohup +++ b/tests/misc/nohup @@ -52,9 +52,9 @@ rm -f nohup.out err exp # change depending on whether stderr is redirected. nohup sh -c 'echo stdout; echo stderr 1>&2' >out || fail=1 if test -t 2; then - test `cat out|tr '\n' -` = stdout-stderr- || fail=1 + test "`cat out|tr '\n' -`" = stdout-stderr- || fail=1 else - test `cat out|tr '\n' -` = stdout- || fail=1 + test "`cat out|tr '\n' -`" = stdout- || fail=1 fi # It must *not* exist. test -f nohup.out && fail=1 |