diff options
Diffstat (limited to 'tests/misc')
-rwxr-xr-x | tests/misc/chroot-fail | 2 | ||||
-rwxr-xr-x | tests/misc/nice-fail | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/tests/misc/chroot-fail b/tests/misc/chroot-fail index 2eceda819..6b4e2d8e1 100755 --- a/tests/misc/chroot-fail +++ b/tests/misc/chroot-fail @@ -29,8 +29,6 @@ fi # them actually run a command, we don't need root privileges chroot # missing argument test $? = 125 || fail=1 -chroot --help --version # too many options -test $? = 125 || fail=1 chroot --- / true # unknown option test $? = 125 || fail=1 diff --git a/tests/misc/nice-fail b/tests/misc/nice-fail index 269576d99..944023387 100755 --- a/tests/misc/nice-fail +++ b/tests/misc/nice-fail @@ -28,8 +28,6 @@ fi # These tests verify exact status of internal failure. nice -n 1 # missing command test $? = 125 || fail=1 -nice --help --version # too many options -test $? = 125 || fail=1 nice --- # unknown option test $? = 125 || fail=1 nice -n 1a # invalid adjustment |