diff options
| author | Matthias Klose <[email protected]> | 2014-01-07 10:25:29 +0100 |
|---|---|---|
| committer | Mark Wielaard <[email protected]> | 2014-01-07 10:25:29 +0100 |
| commit | e922ec4e3bcd7c164a9ce424accac4394e7d5afd (patch) | |
| tree | 929bfb00e3c695e14a19ec785d221928503ee84a /tests/backtrace-subr.sh | |
| parent | 27aae18ce872409b70afef8503941c7e75c8d93d (diff) | |
tests: backtrace-subr.sh (check_native_core) should check core file name.
Needed when /proc/sys/kernel/core_uses_pid is set to 0. Try to rename
the core file, and if it does still fail, skip the test.
Signed-off-by: Mark Wielaard <[email protected]>
Diffstat (limited to 'tests/backtrace-subr.sh')
| -rw-r--r-- | tests/backtrace-subr.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/backtrace-subr.sh b/tests/backtrace-subr.sh index e7ece91c..62b873c7 100644 --- a/tests/backtrace-subr.sh +++ b/tests/backtrace-subr.sh @@ -111,6 +111,11 @@ check_native_core() # Skip the test if we cannot adjust core ulimit. core="core.`ulimit -c unlimited || exit 77; set +ex; testrun ${abs_builddir}/$child --gencore; true`" + # see if /proc/sys/kernel/core_uses_pid is set to 0 + if [ -f core ]; then + mv core "$core" + fi + if [ ! -f "$core" ]; then exit 77; fi if [ "x$SAVED_VALGRIND_CMD" != "x" ]; then VALGRIND_CMD="$SAVED_VALGRIND_CMD" |
