mirror of
https://github.com/coreutils/coreutils.git
synced 2024-11-24 02:17:22 +08:00
* tests/mv/atomic: Check for specific strace output, rather than
simply nonempty. RHEL AS 4 would fail this test due to strace generating "[ Process PID=14434 runs in 32 bit mode. ]". Reported by Nelson Beebe.
This commit is contained in:
parent
fb15bc880a
commit
e1fb2a80bb
@ -1,3 +1,10 @@
|
||||
2006-09-12 Jim Meyering <jim@meyering.net>
|
||||
|
||||
* tests/mv/atomic: Check for specific strace output, rather than
|
||||
simply nonempty. RHEL AS 4 would fail this test due to strace
|
||||
generating "[ Process PID=14434 runs in 32 bit mode. ]".
|
||||
Reported by Nelson Beebe.
|
||||
|
||||
2006-09-11 Jim Meyering <jim@meyering.net>
|
||||
|
||||
* src/remove.c (remove_dir): Move new cache_stat_init call onto
|
||||
|
@ -58,8 +58,7 @@ fi
|
||||
fail=0
|
||||
|
||||
strace -qe unlink mv -T s1 s2 > out 2>&1 || fail=1
|
||||
cat <<\EOF > exp || fail=1
|
||||
EOF
|
||||
grep unlink out && fail=1
|
||||
|
||||
# Ensure that the source, s1, is gone.
|
||||
ls -dl s1 > /dev/null 2>&1 && fail=1
|
||||
@ -67,7 +66,4 @@ ls -dl s1 > /dev/null 2>&1 && fail=1
|
||||
# Ensure that the destination, s2, contains the link from s1.
|
||||
test "`readlink s2`" = t1 || fail=1
|
||||
|
||||
cmp out exp || fail=1
|
||||
test $fail = 1 && diff out exp 2> /dev/null
|
||||
|
||||
(exit $fail); exit $fail
|
||||
|
Loading…
Reference in New Issue
Block a user