mirror of
https://github.com/ceph/ceph
synced 2024-12-14 07:25:50 +00:00
94f0ba1efe
This lets us capture the vgcore.* files, which always go to valgrind's cwd. Fixes: #1953
8 lines
109 B
Bash
8 lines
109 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
# valgrind only dumps to cwd, so cwd there...
|
|
cd /tmp/cephtest/archive/coredump
|
|
|
|
exec "$@"
|