diff options
author | Jim Meyering <meyering@redhat.com> | 2008-11-16 10:45:18 +0100 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2008-11-16 10:45:41 +0100 |
commit | 4e38e6a19cb67c6fbee6c4c1e477748776818bab (patch) | |
tree | 7b0af77d9a95d7463c22c12a532aae5c7e1de59e | |
parent | b3e779c090bd6b3ebbd2e811b71891261ce85a9c (diff) | |
download | coreutils-4e38e6a19cb67c6fbee6c4c1e477748776818bab.tar.xz |
tests: remove debug code that would try to write into /t/k-env
* tests/ls/no-cap: Remove debugging "tee".
-rwxr-xr-x | tests/ls/no-cap | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ls/no-cap b/tests/ls/no-cap index 1cae69f9f..8f137b5cf 100755 --- a/tests/ls/no-cap +++ b/tests/ls/no-cap @@ -29,7 +29,7 @@ strace -e capget ls --color=always > /dev/null 2> out || fail=1 $EGREP 'capget\(' out || skip_test_ "your ls doesn't call capget" rm -f out -eval "$(TERM=xterm dircolors -b | sed 's/ca=[^:]*:/ca=:/' | tee /t/k-env)" +eval "$(TERM=xterm dircolors -b | sed 's/ca=[^:]*:/ca=:/')" strace -e capget ls --color=always > /dev/null 2> out || fail=1 $EGREP 'capget\(' out && fail=1 |