From 1ddf7faf11c9f24d2822bf9e588895743bd5e3fa Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Tue, 28 Nov 2006 13:36:37 +0100 Subject: * tests/mv/no-target-dir: Detect a buggy rename syscall. If found, skip this test. This happens at least on ia64 linux-2.4.19 w/ext3. Reported by Matthew Woehlke. --- tests/mv/no-target-dir | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'tests/mv/no-target-dir') diff --git a/tests/mv/no-target-dir b/tests/mv/no-target-dir index cf4891c58..db7fe9456 100755 --- a/tests/mv/no-target-dir +++ b/tests/mv/no-target-dir @@ -35,11 +35,19 @@ cd $tmp || framework_failure=1 mkdir -p d/sub empty src d2/sub e2 || framework_failure=1 touch f || framework_failure=1 +# Skip this test if there's an underlying kernel bug. +mkdir a b b/a || framework_failure=1 + if test $framework_failure = 1; then echo "$0: failure in testing framework" 1>&2 (exit 1); exit 1 fi +mv a b || { + echo "$0: skipping this test: your kernel's rename syscall is buggy" 1>&2 + (exit 77); exit 77 +} + fail=0 # This should succeed, since both src and dest are directories, -- cgit v1.2.3-54-g00ecf