diff options
author | Pádraig Brady <P@draigBrady.com> | 2015-06-25 13:21:28 +0100 |
---|---|---|
committer | Pádraig Brady <P@draigBrady.com> | 2015-06-25 13:41:24 +0100 |
commit | 1d82751e2ca03084db4cb06c0b4eaf73036082d8 (patch) | |
tree | 04e6e03035b745632a22458a3351d5ea6337dc80 /tests/rm | |
parent | 381b797784b050f4eafc0dd4b6f070f2d1465f98 (diff) | |
download | coreutils-1d82751e2ca03084db4cb06c0b4eaf73036082d8.tar.xz |
tests: avoid false failures with LD_PRELOAD=libasan.so.2
The LD_PRELOAD checks by -fsanitize=address are overly strict:
https://groups.google.com/forum/#!topic/address-sanitizer/jEvOJgkDqQk
A workaround is to first export LD_PRELOAD=libasan.so.2
The tests below are adjusted so that workaround is not discarded.
* tests/cp/no-ctx.sh: Append to $LD_PRELOAD.
* tests/df/no-mtab-status.sh: Likewise.
* tests/df/skip-duplicates.sh: Likewise.
* tests/ls/getxattr-speedup.sh: Likewise.
* tests/rm/r-root.sh: Likewise.
* tests/cp/nfs-removal-race.sh: Likewise. Also check that
LD_PRELOAD is effective to aid future maintainability
and avoid false failure if libasan.so.2 is not preloaded.
Diffstat (limited to 'tests/rm')
-rwxr-xr-x | tests/rm/r-root.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/rm/r-root.sh b/tests/rm/r-root.sh index 74d1a2a62..c06332ae2 100755 --- a/tests/rm/r-root.sh +++ b/tests/rm/r-root.sh @@ -89,7 +89,7 @@ exercise_rm_r_root () fi timeout --signal=KILL 2 \ - env LD_PRELOAD=./k.so $skip_exit \ + env LD_PRELOAD=$LD_PRELOAD:./k.so $skip_exit \ rm -rv --one-file-system "$@" > out 2> err return $? |