Move the test case to tests dir.
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 78a7901..fa6c2c6 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -45,7 +45,8 @@
Gtest-trace Ltest-trace \
test-async-sig test-flush-cache test-init-remote \
test-mem test-setjmp test-ptrace \
- Ltest-nomalloc Ltest-nocalloc rs-race
+ Ltest-nomalloc Ltest-nocalloc rs-race \
+ test-coredump-unwind
noinst_PROGRAMS_cdep = forker mapper test-ptrace-misc \
Gperf-simple Lperf-simple
@@ -112,6 +113,7 @@
LIBUNWIND = $(top_builddir)/src/libunwind-$(arch).la
LIBUNWIND_ptrace = $(top_builddir)/src/libunwind-ptrace.a
+LIBUNWIND_coredump = $(top_builddir)/src/libunwind-coredump.a
if USE_ELF32
LIBUNWIND_ELF = $(top_builddir)/src/libunwind-elf32.la
@@ -162,3 +164,4 @@
test_setjmp_LDADD = $(LIBUNWIND_setjmp)
ia64_test_setjmp_LDADD = $(LIBUNWIND_setjmp)
+test_coredump_unwind_LDADD = $(LIBUNWIND_coredump) $(LIBUNWIND)