diff options
author | Bruno Haible <bruno@clisp.org> | 2007-01-03 10:51:37 +0100 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2007-01-03 10:51:37 +0100 |
commit | f28e07f81d10148c06ffc458b1ea47927778e6fa (patch) | |
tree | 65310534af8a9bdb8c4d80a97e9cdd1982ef1788 | |
parent | 8563b4c0519cee303e9609694b7a36453458cbbd (diff) | |
download | coreutils-f28e07f81d10148c06ffc458b1ea47927778e6fa.tar.xz |
Avoid spurious test failures on MacOS X 10.3.9, in a German locale.
* tests/chown/deref: Apply lang-default.
* tests/misc/split-a: Likewise.
* tests/mv/reply-no: Likewise.
Signed-off-by: Jim Meyering <jim@meyering.net>
-rw-r--r-- | ChangeLog | 5 | ||||
-rwxr-xr-x | tests/chown/deref | 1 | ||||
-rwxr-xr-x | tests/misc/split-a | 2 | ||||
-rwxr-xr-x | tests/mv/reply-no | 2 |
4 files changed, 10 insertions, 0 deletions
@@ -1,5 +1,10 @@ 2007-01-03 Bruno Haible <bruno@clisp.org> + Avoid spurious test failures on MacOS X 10.3.9, in a German locale. + * tests/chown/deref: Apply lang-default. + * tests/misc/split-a: Likewise. + * tests/mv/reply-no: Likewise. + * src/copy.c (copy_internal): Use mkfifo as a fallback if mknod fails. Needed on MacOS X. diff --git a/tests/chown/deref b/tests/chown/deref index bae146a4b..e3da3ebe6 100755 --- a/tests/chown/deref +++ b/tests/chown/deref @@ -25,6 +25,7 @@ if test "$VERBOSE" = yes; then fi . $srcdir/../envvar-check +. $srcdir/../lang-default pwd=`pwd` t0=`echo "$0"|sed 's,.*/,,'`.tmp; tmp=$t0/$$ diff --git a/tests/misc/split-a b/tests/misc/split-a index 7dfe31954..3026aac80 100755 --- a/tests/misc/split-a +++ b/tests/misc/split-a @@ -23,6 +23,8 @@ if test "$VERBOSE" = yes; then split --version fi +. $srcdir/../lang-default + pwd=`pwd` tmp=split-a.$$ trap 'status=$?; cd "$pwd" && rm -rf $tmp && exit $status' 0 diff --git a/tests/mv/reply-no b/tests/mv/reply-no index fa338c893..ae0a3cd2e 100755 --- a/tests/mv/reply-no +++ b/tests/mv/reply-no @@ -23,6 +23,8 @@ if test "$VERBOSE" = yes; then mv --version fi +. $srcdir/../lang-default + 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 |