diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2005-04-29 21:48:48 +0000 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2005-04-29 21:48:48 +0000 |
commit | b4dcd32039b0c8364fad8f1181d5acc6bdf1daf3 (patch) | |
tree | b9737a1135d2a5e4bca495397655540e9e6e3c15 /tests/misc/nice | |
parent | 57f4da0a00646e57c5bc72b4fd98dcbc5e413536 (diff) | |
download | coreutils-b4dcd32039b0c8364fad8f1181d5acc6bdf1daf3.tar.xz |
Don't use 'set -'. Also, don't set _POSIX2_VERSION.
Diffstat (limited to 'tests/misc/nice')
-rwxr-xr-x | tests/misc/nice | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/tests/misc/nice b/tests/misc/nice index d42f0ae5e..99cb58eed 100755 --- a/tests/misc/nice +++ b/tests/misc/nice @@ -29,16 +29,13 @@ tests=' 19 --1:-12 12 NA LAST NA ' -set - $tests +set $tests if test "$VERBOSE" = yes; then nice --version set -x fi -_POSIX2_VERSION=199209 -export _POSIX2_VERSION - # Require that this test be run at `nice' level 0. niceness=`nice` if test "$niceness" = 0; then |