diff options
-rw-r--r-- | cfg.mk | 6 | ||||
m--------- | gnulib | 0 | ||||
-rwxr-xr-x | tests/ls/dangle | 4 |
3 files changed, 2 insertions, 8 deletions
@@ -280,12 +280,6 @@ sc_prohibit_framework_failure: halt='use framework_failure_ instead' \ $(_sc_search_regexp) -# In tests, use "compare expected actual", not the reverse. -sc_prohibit_reversed_compare_failure: - @prohibit='\<compare [^ ]+ (exp|/dev/null)' \ - halt='reversed compare arguments' \ - $(_sc_search_regexp) - ########################################################### _p0 = \([^"'/]\|"\([^\"]\|[\].\)*"\|'\([^\']\|[\].\)*' _pre = $(_p0)\|[/][^"'/*]\|[/]"\([^\"]\|[\].\)*"\|[/]'\([^\']\|[\].\)*'\)* diff --git a/gnulib b/gnulib -Subproject 908690cb743e69c73b42ae310807b29800c8764 +Subproject a5f6df2b1f3f0fdc73635de3ad285d21703dab1 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 |