summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorEric Blake <eblake@redhat.com>2011-11-29 16:10:40 -0700
committerEric Blake <eblake@redhat.com>2011-11-29 16:10:40 -0700
commit20dfc04204fa910f83c2b93bca818399cf4f740f (patch)
tree3ec145c0ebd87943f1fcdcde4b4c27473cfc476d /tests
parent1a85d4a05ac0ae0e530e21170461a8508efdec10 (diff)
downloadcoreutils-20dfc04204fa910f83c2b93bca818399cf4f740f.tar.xz
build: update gnulib for syntax-check improvement
Commit 5b3e538 proved useful enough to migrate to gnulib after enhancing it to be more generic, which in turn pointed out that commit a2c811db missed an offender. * gnulib: Update to latest. * cfg.mk (sc_prohibit_reversed_compare_failure): Delete, now that gnulib provides it. * tests/ls/dangle: Fix last offender.
Diffstat (limited to 'tests')
-rwxr-xr-xtests/ls/dangle4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/ls/dangle b/tests/ls/dangle
index c85835f66..5892630d1 100755
--- a/tests/ls/dangle
+++ b/tests/ls/dangle
@@ -52,11 +52,11 @@ compare exp out || fail=1
# Ensure that ls -Li prints "?" as the inode of a dangling symlink.
rm -f out
ls -Li d > out 2>/dev/null && fail=1
-compare out subdir_Li_exp || fail=1
+compare subdir_Li_exp out || fail=1
# Ensure that ls -Ls prints "?" as the allocation of a dangling symlink.
rm -f out
ls -Ls d > out 2>/dev/null && fail=1
-compare out subdir_Ls_exp || fail=1
+compare subdir_Ls_exp out || fail=1
Exit $fail