mirror of
git://git.sv.gnu.org/coreutils.git
synced 2026-05-17 16:01:12 +02:00
* maint.mk (sc_require_test_exit_idiom): New rule to enforce policy. * tests/cp/acl: Adhere to the new policy. * tests/cp/preserve-gid: Likewise. * tests/dd/misc: * tests/install/create-leading: * tests/ln/sf-1: * tests/ls/symlink-slash: * tests/misc/help-version: * tests/misc/ls-time: * tests/misc/nice: * tests/misc/shred-remove: * tests/misc/stty: * tests/misc/stty-row-col: * tests/mkdir/p-1: * tests/mkdir/p-2: * tests/mkdir/p-3: * tests/mkdir/p-v: * tests/mkdir/special-1: * tests/mkdir/writable-under-readonly: * tests/mv/acl: * tests/mv/backup-is-src: * tests/mv/diag: * tests/mv/dir-file: * tests/mv/force: * tests/mv/hard-link-1: * tests/mv/i-2: * tests/mv/i-4: * tests/mv/into-self: * tests/mv/into-self-2: * tests/mv/into-self-3: * tests/mv/partition-perm: * tests/mv/to-symlink: * tests/rmdir/ignore: * tests/tail-2/assert: * tests/tail-2/assert-2: * tests/touch/dangling-symlink: * tests/touch/dir-1: * tests/touch/empty-file: * tests/touch/fifo: * tests/touch/no-rights: Likewise. Signed-off-by: Jim Meyering <meyering@redhat.com>
84 lines
1.9 KiB
Bash
Executable File
84 lines
1.9 KiB
Bash
Executable File
#! /bin/sh
|
|
# Test "nice".
|
|
|
|
# Copyright (C) 2002, 2003, 2005-2008 Free Software Foundation, Inc.
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
if test "$VERBOSE" = yes; then
|
|
set -x
|
|
nice --version
|
|
fi
|
|
|
|
. $srcdir/../test-lib.sh
|
|
|
|
tests='
|
|
0 empty 10
|
|
1 -1 1
|
|
2 -12 12
|
|
3 -1:-2 2
|
|
4 -n:1 1
|
|
5 -n:1:-2 2
|
|
6 -n:1:-+12 12
|
|
7 -2:-n:1 1
|
|
8 -2:-n:12 12
|
|
9 -+1 1
|
|
10 -+12 12
|
|
11 -+1:-+12 12
|
|
12 -n:+1 1
|
|
13 --1:-2 2
|
|
14 --1:-2:-13 13
|
|
15 --1:-n:2 2
|
|
16 --1:-n:2:-3 3
|
|
17 --1:-n:2:-13 13
|
|
18 -n:-1:-12 12
|
|
19 --1:-12 12
|
|
NA LAST NA
|
|
'
|
|
set $tests
|
|
|
|
if test "$VERBOSE" = yes; then
|
|
nice --version
|
|
set -x
|
|
fi
|
|
|
|
# Require that this test be run at `nice' level 0.
|
|
niceness=`nice`
|
|
if test "$niceness" = 0; then
|
|
: ok
|
|
else
|
|
skip_test_ "this test must be run at nice level 0"
|
|
fi
|
|
|
|
fail=0
|
|
while :; do
|
|
test_name=$1
|
|
args=$2
|
|
expected_result=$3
|
|
test $args = empty && args=''
|
|
test x$args = xLAST && break
|
|
args=`echo x$args|tr : ' '|sed 's/^x//'`
|
|
if test "$VERBOSE" = yes; then
|
|
#echo "testing \`nice $args nice\` = $expected_result ..."
|
|
echo "test $test_name... " | tr -d '\n'
|
|
fi
|
|
test x`nice $args nice 2> /dev/null` = x$expected_result \
|
|
&& ok=ok || ok=FAIL fail=1
|
|
test "$VERBOSE" = yes && echo $ok
|
|
test x`nice $args nice 2> /dev/null` = x$expected_result || fail=1
|
|
shift; shift; shift
|
|
done
|
|
|
|
(exit $fail); exit $fail
|