diff options
| author | Jim Meyering <jim@meyering.net> | 2006-06-11 08:12:37 +0000 |
|---|---|---|
| committer | Jim Meyering <jim@meyering.net> | 2006-06-11 08:12:37 +0000 |
| commit | ba2948b76496486bac9d0681145dbd912af80b6e (patch) | |
| tree | fe60852dc0fb6dba2ff3e18f90077fcff5962593 | |
| parent | * tests/cp/same-file: Execute 'ls' in the C locale, so that it (diff) | |
| download | coreutils-ba2948b76496486bac9d0681145dbd912af80b6e.tar.gz coreutils-ba2948b76496486bac9d0681145dbd912af80b6e.zip | |
Setting TIME_STYLE=long-iso in the environment would make the
cp/same-file test fail.
* tests/envvar-check (vars): Add TIME_STYLE to the list.
* tests/cp/same-file: Revert last change.
Source the envvar-check script, to ensure that TIME_STYLE
settings don't affect these tests.
| -rw-r--r-- | ChangeLog | 9 | ||||
| -rwxr-xr-x | tests/cp/same-file | 3 | ||||
| -rw-r--r-- | tests/envvar-check | 1 |
3 files changed, 12 insertions, 1 deletions
@@ -1,3 +1,12 @@ +2006-06-11 Jim Meyering <jim@meyering.net> + + Setting TIME_STYLE=long-iso in the environment would make the + cp/same-file test fail. + * tests/envvar-check (vars): Add TIME_STYLE to the list. + * tests/cp/same-file: Revert last change. + Source the envvar-check script, to ensure that TIME_STYLE + settings don't affect these tests. + 2006-06-11 Paul Eggert <eggert@cs.ucla.edu> * tests/cp/same-file: Execute 'ls' in the C locale, so that it diff --git a/tests/cp/same-file b/tests/cp/same-file index 2cba869b3..a08c4e3f3 100755 --- a/tests/cp/same-file +++ b/tests/cp/same-file @@ -8,6 +8,7 @@ if test "$VERBOSE" = yes; then fi . $srcdir/../lang-default +. $srcdir/../envvar-check # Unset CDPATH. Otherwise, output from the `cd dir' command # can make this test fail. @@ -74,7 +75,7 @@ for args in 'foo symlink' 'symlink foo' 'foo foo' 'sl1 sl2' 'foo hardlink'; do # and put brackets around the output. test -s _err && echo "[`sed 's/^[^:][^:]*:/cp:/' _err`]" # Strip off all but the file names. - ls="`LC_ALL=C ls -gG --ignore=_err . \ + ls="`ls -gG --ignore=_err . \ | sed \ -e '/^total /d' \ -e 's/^[^ ]* *[^ ]* *[^ ]* *[^ ]* *[^ ]* *[^ ]* *//'`" diff --git a/tests/envvar-check b/tests/envvar-check index 406a0692f..9bc44e248 100644 --- a/tests/envvar-check +++ b/tests/envvar-check @@ -13,6 +13,7 @@ vars=' DU_BLOCK_SIZE LS_BLOCK_SIZE SIMPLE_BACKUP_SUFFIX + TIME_STYLE VERSION_CONTROL ' for var in $vars |
