diff options
author | Jim Meyering <jim@meyering.net> | 2007-09-12 14:52:26 +0200 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2007-09-15 08:40:39 +0200 |
commit | a669dfdabb3fa1be2e1367d53a797d495e7bd5c9 (patch) | |
tree | c88d6414649f7f4f5571138e193c72da44a03876 /tests/rm/interactive-once | |
parent | 0539705768992ebcc290bc859f64e27898c7f958 (diff) | |
download | coreutils-a669dfdabb3fa1be2e1367d53a797d495e7bd5c9.tar.xz |
More misc, test-related changes. (some to allow running tests as root)
Diffstat (limited to 'tests/rm/interactive-once')
-rwxr-xr-x | tests/rm/interactive-once | 34 |
1 files changed, 9 insertions, 25 deletions
diff --git a/tests/rm/interactive-once b/tests/rm/interactive-once index cd3c2b234..e09db7c12 100755 --- a/tests/rm/interactive-once +++ b/tests/rm/interactive-once @@ -1,7 +1,7 @@ #!/bin/sh # Test the -I option added to coreutils 6.0 -# Copyright (C) 2006 Free Software Foundation, Inc. +# Copyright (C) 2006, 2007 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 @@ -24,27 +24,14 @@ if test "$VERBOSE" = yes; then fi . $srcdir/../lang-default +. $srcdir/../test-lib.sh -pwd=`pwd` -t0=`echo "$0"|sed 's,.*/,,'`.tmp; tmp=$t0/$$ -trap 'status=$?; cd "$pwd" && chmod -R u+rwx $t0 && rm -rf $t0 && exit $status' 0 -trap '(exit $?); exit $?' 1 2 13 15 - -framework_failure=0 -mkdir -p $tmp || framework_failure=1 -cd $tmp || framework_failure=1 - -mkdir -p dir1-1 dir2-1 dir2-2 || framework_failure=1 +mkdir -p dir1-1 dir2-1 dir2-2 || framework_failure touch file1-1 file2-1 file2-2 file2-3 file3-1 file3-2 file3-3 file3-4 \ - || framework_failure=1 -echo y > $test.Iy || framework_failure=1 -echo n > $test.In || framework_failure=1 -rm -f out err || framework_failure=1 - -if test $framework_failure = 1; then - echo "$0: failure in testing framework" 1>&2 - (exit 1); exit 1 -fi + || framework_failure +echo y > $test.Iy || framework_failure +echo n > $test.In || framework_failure +rm -f out err || framework_failure fail=0 @@ -122,10 +109,7 @@ multiple files, recursion, answer yes rm: remove all arguments recursively? . EOF -cmp out expout || fail=1 -cmp err experr || fail=1 -test $fail = 1 && { - diff out expout 2> /dev/null; diff err experr 2> /dev/null -} +compare out expout || fail=1 +compare err experr || fail=1 (exit $fail); exit $fail |