mirror of
https://github.com/ceph/ceph
synced 2024-12-16 00:15:35 +00:00
d9fff40f6b
realpath isn't available everywhere, use readlink -e instead. Signed-off-by: Sam Lang <sam.lang@inktank.com>
9 lines
143 B
Bash
9 lines
143 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
testdir=$(readlink -e $(dirname $0))
|
|
# valgrind only dumps to cwd, so cwd there...
|
|
cd ${testdir}/archive/coredump
|
|
|
|
exec "$@"
|