History log of /external/libunwind/tests/Makefile.am
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
61fad17d29ed661d15a80ed931c7822e5e7ea411 19-Apr-2013 Matt Fischer <matt.fischer@garmin.com> Build crasher test only when coredump support is enabled

The crasher test is used as part of the coredump test suite,
but is being built regardless of whether that support has been
configured or not. This patch changes the build so that it is
only built when coredump support is enabled.
/external/libunwind/tests/Makefile.am
563b0ff3144c0e60a9aa63fdafb4dea66ecd3d50 19-Apr-2013 Matt Fischer <matt.fischer@garmin.com> Added --enable-setjmp

Currently, libunwind-setjmp is built whenever local unwinding is
built. This patch adds an explicit flag to control it instead.
The default if not specified is to follow the old behavior.
/external/libunwind/tests/Makefile.am
abb0957198be8cb34c4dfa0dfd7e7eee13055f09 15-Apr-2013 Matt Fischer <matt.fischer@garmin.com> Added --enable-ptrace

This change adds a manual override to control building of the ptrace
library, similar to the existing --enable-coredump option. The
default is set based on the existence of sys/ptrace.h, allowing it
to be automatically disabled for platforms that do not have ptrace.
/external/libunwind/tests/Makefile.am
ae3dd9417a3d178cf51ce744d85b695dbf025b44 28-Oct-2012 Arun Sharma <asharma@fb.com> Add known test failures to XFAIL_TESTS
/external/libunwind/tests/Makefile.am
58354c94d7472f479cd282c4a8a3a8fb536f5b05 17-Sep-2012 Tommi Rantala <tt.rantala@gmail.com> Nuke HAVE_BACKTRACE

We do not really need to care if the system provides `backtrace()',
since we will want to test the one provided in libunwind, not the one
that is provided by the system. The `backtrace()' calls should already
be aliased to `unw_backtrace()', but if that is not working for whatever
reason, we can call `unw_backtrace()' explicitly.
/external/libunwind/tests/Makefile.am
7263a97cedae620a233420b35e35173005bfef54 17-Sep-2012 Tommi Rantala <tt.rantala@gmail.com> Roll `test-nocalloc' into `Ltest-nocalloc.c'

We are building only a UNW_LOCAL_ONLY build of `test-nocalloc', and the
"generic" build would not be very interesting. Roll the whole test into
`Ltest-nocalloc.c'.
/external/libunwind/tests/Makefile.am
643fc92e9106cd5a2e52b10a3e4b686111545726 17-Sep-2012 Tommi Rantala <tt.rantala@gmail.com> Rename `rs-race' to `Lrs-race'

Only build a "local-only" version of `rs-race'. The "generic" build is
not very entertaining, as the `unw_set_caching_policy()' calls
manipulate the `unw_local_addr_space' in libunwind-$arch.so, while the
`backtrace()' calls use the address space object from libunwind.so
behind the scenes.
/external/libunwind/tests/Makefile.am
be230add88815880a41f826ba22d4fcd96547459 14-Sep-2012 Tommi Rantala <tt.rantala@gmail.com> Rename `test-varargs' to `Ltest-varargs'

This testcase only uses the local-only `unw_backtrace()' from libunwind,
and a "generic" build of this test case would not be interesting.
/external/libunwind/tests/Makefile.am
b45c27b6ee5803e25f397bb068e1137ecb7d3c55 15-Sep-2012 Cody P Schafer <cody@linux.vnet.ibm.com> ppc64: remove tests/ppc64-test-wchar

It is not clear what is special about wchar on PPC64, and no one can
remember why this was added.

Removing.
/external/libunwind/tests/Makefile.am
3a5d7ff694aa95773a402309aaec37a28a921539 15-Sep-2012 Cody P Schafer <cody@linux.vnet.ibm.com> build: make libunwind-coredump build optional

Disable the building of libunwind-coredump except on x86_64 and x86
(where implimentations exsist).

Allow overriding of this autodetection via --enable-coredump and
--disable-coredump.
/external/libunwind/tests/Makefile.am
8203c955c8bde94bba609d20abb39c576acf3e38 31-Aug-2012 Tommi Rantala <tt.rantala@gmail.com> Change test-varargs to check libunwind backtracing

test-varargs is checking how `backtrace()' provided by the system
behaves when varargs are used. Let's make the test more useful by
changing it to test the `backtrace()' provided by libunwind.

Change the testcase to return 0/1 for success/failure, and add it to the
set of checks, so that it gets run on `make check'. Also call
`unw_backtrace()' explicitly so that we do not need to bother with
`execinfo.h' and `backtrace()' prototype.
/external/libunwind/tests/Makefile.am
aed6c8b994f256afee66146f7a4b4e003b7f7d5f 30-Aug-2012 Tommi Rantala <tt.rantala@gmail.com> Check __builtin___clear_cache() at configuration time

Fixup commit 39b83981 ("Flush icache with __builtin___clear_cache() in
tests when compiling with GCC") to fix compilation with older GCC
versions that do not provide __builtin___clear_cache().
/external/libunwind/tests/Makefile.am
5b55e556ca00ee02083b340d29346b9d55105233 10-Aug-2012 Tommi Rantala <tt.rantala@gmail.com> test-resume-sig-rt: test unw_resume() in presence of "realtime" signal frame

Introduce a new test case that is derived from test-resume-sig, but
using the SA_SIGINFO sigaction() flag. This case is referred in the
linux kernel sources as "realtime" signal handler, and is handled
differently in the kernel on many architectures and in libunwind as
well.
/external/libunwind/tests/Makefile.am
201bb8733d385c86b9d78ee061db071b92d03938 18-Aug-2012 Arun Sharma <asharma@fb.com> Use libtool to build libunwind-ptrace
/external/libunwind/tests/Makefile.am
04c77cced4975d2d4f8e1fd76b49e5884d9cbae4 10-Aug-2012 Konstantin Belousov <kostikbel@gmail.com> Fix for test suite build in the separate directory.
Avoid manually coding the rule to build crasher, instead fuddle
the compiler so that even -O2 optimization does not eliminate call
to b().

First, put calls to both a() and b() in the b() into non-tail-recursive
position. Second, as recommended in gcc manual, use asm volatile("");
to prevent further prevent inlining, besides attribute((noinline).
And third, call b() by alias, which current gcc optimizer cannot see
through.

Also, do not dereference NULL in a, and mark the memory access as volatile.
[ Minor portability improvements: asharma@fb.com ]
/external/libunwind/tests/Makefile.am
4ab9e5dd10e7b9653651343ac4cfe79bfe4e4ee3 08-Aug-2012 Martin Milata <mmilata@redhat.com> MiniDebugInfo test: tests/run-coredump-unwind-mdi

Test that creates MiniDebugInfo-containing binary and then checks if it
can recover the procedure names from its coredump.

Signed-off-by: Martin Milata <mmilata@redhat.com>
/external/libunwind/tests/Makefile.am
de28c51e631fd2d119caff4eabb8ff604dbcf2eb 29-Jun-2012 Martin Milata <mmilata@redhat.com> Build libunwind-coredump using libtool

So that it builds shared/pic library that can be linked with other
libraries.

Signed-off-by: Martin Milata <mmilata@redhat.com>
/external/libunwind/tests/Makefile.am
0f9a540c8c67ec4bb2e03130feea00a0cc9bf30c 17-May-2012 Martin Milata <mmilata@redhat.com> coredump: add test

Program test-coredump-unwind was modified to map backing files based on
virtual addresses instead of segment numbers.

The crasher.c is a program that essentially calls some functions and
then writes to invalid address causing a crash. Before that, it detects
which executables are mapped to which virtual addresses and writes this
information to a file suitable for consumption by test-coredump-unwind.
The mapping information is obtained form /proc/self/maps, so currently
it only works on linux.

The test itself is a shell script, which first runs the program and then
runs test-coredump-unwind on the resulting core and address space
map file to check whether the stack trace obtained from the dump roughly
corresponds to what it should look like.

Signed-off-by: Martin Milata <mmilata@redhat.com>
/external/libunwind/tests/Makefile.am
d93d96ad833390519ea68a2df22dd55dd26a3214 22-May-2012 Martin Milata <mmilata@redhat.com> Fix compilation on IA64

- Add tdep macro for {dwarf,ia64}_find_unwind_table so that ia64
doesn't try to use dwarf code.
- Fix extraneous #if.
- Fix mistyped filename in Makefile.am.
- Link ia64-specific tests with correct libraries.

Signed-off-by: Martin Milata <mmilata@redhat.com>
/external/libunwind/tests/Makefile.am
46dfe3ecf5ee60eec08c063b5b58fc38a685440d 15-Mar-2012 Arun Sharma <asharma@fb.com> Fixup whitespace in Makefile.
/external/libunwind/tests/Makefile.am
f0bb806ecbbdc62f0e59716221212d75cc78e9f8 13-Mar-2012 Arun Sharma <asharma@fb.com> Move the test case to tests dir.
/external/libunwind/tests/Makefile.am
42b67080ebd953d4b3bdb7fbdc3a0d4ca906982c 16-Oct-2011 Arun Sharma <asharma@fb.com> Fix linker errors with recent binutils

Without this, tests that called unw_getcontext() got a linker error

Signed-off-by: Arun Sharma <asharma@fb.com>
/external/libunwind/tests/Makefile.am
1d8e2c1ae568a1d684015350097d493b1b13c0c7 11-Sep-2011 Arun Sharma <asharma@fb.com> Explicitly specify the libraries

Without this linking fails with gold and newer versions of ld.
/external/libunwind/tests/Makefile.am
f195c9ad52d41088eb99bbbdfee75d628ab54700 19-Aug-2011 Sven Neumann <s.neumann@raumfeld.com> Skip a few tests on uCLibC

Without this, the build fails on platforms that don't implement
backtrace().
/external/libunwind/tests/Makefile.am
d589e205068843548d57116e2e228c6f552a12f4 06-Apr-2011 Ken Werner <ken.werner@linaro.org> Add the appropriate libraries to the *_LDADD variables.

The test-async-sig.c, test-flush-cache.c and Ltest_resume_sig.c define
UNW_LOCAL_ONLY and therefore only need LIBUNWIND_local. Gtest-dyn1.c is
calling '_U_dyn_cancel' and test-trace.c is using 'unw_backtrace' which
are in LIBUNWIND_local.

Signed-off-by: Ken Werner <ken.werner@linaro.org>
/external/libunwind/tests/Makefile.am
d86155f72e0a2db73a6cf4b873d400536ed06486 06-Apr-2011 Arun Sharma <asharma@fb.com> Add a test to catch calls to calloc from libunwind

We'd like to avoid calls to all malloc related functions
so libunwind is still usable from such allocators.

Signed-off-by: Paul Pluzhnikov <ppluzhnikov@google.com>
/external/libunwind/tests/Makefile.am
4dc222cf8af663b4557b56281737f2c2f1115827 05-Apr-2011 Arun Sharma <asharma@fb.com> Undo parts of 2f9b04e9c29999d18906e37b37dcea9676df194f

Linking to local unwind library seems to be unrelated to
failures seen earlier.
/external/libunwind/tests/Makefile.am
2f9b04e9c29999d18906e37b37dcea9676df194f 01-Apr-2011 Arun Sharma <asharma@fb.com> Mark slow_backtrace() ALWAYS_INLINE

Also fix Makefile.am so remote unwinding tests such Gtest-trace
don't link with the local unwind library (libunwind.a).
/external/libunwind/tests/Makefile.am
741a5a2149b111d6d180cb789031b9da9ef0b621 25-Mar-2011 Arun Sharma <asharma@fb.com> Add some performance tests for fast backtracing.
/external/libunwind/tests/Makefile.am
7ff83c051e33de1adbcbc20bf63ea368c2745a70 25-Mar-2011 Arun Sharma <asharma@fb.com> Fix up compilation and test failures
/external/libunwind/tests/Makefile.am
9e98f15e9aee12e67cd5956d06ccb559f6a06213 19-Mar-2011 Lassi Tuura <lat@iki.fi> Fast back-trace for x86_64 for only collecting the call stack.

Adds new function to perform a pure stack walk without unwinding,
functionally similar to backtrace() but accelerated by an address
attribute cache the caller maintains across calls.
/external/libunwind/tests/Makefile.am
6c1a58fd06eea3a45c6de38eb5d1f79f636bb8d5 25-Mar-2011 Arun Sharma <asharma@fb.com> Remove the unused arm_extbl_test_LDADD from Makefile.am
/external/libunwind/tests/Makefile.am
6e25c11505d9e661c72af78c4a900412ba23125e 23-Mar-2011 Ken Werner <ken.werner@linaro.org> Remove the arm-extbl-test.

This test case relies on old libunwind internals such as the arm_stackframe.
Since the ARM extbtl-parser now operates on the DWARF model directly the
arm-extbl-test isn't of any particular use anymore.

Signed-off-by: Ken Werner <ken.werner@linaro.org>
/external/libunwind/tests/Makefile.am
04fc88fa31ffac9e6189c4debd745c965473d1d4 22-Mar-2011 Konstantin Belousov <kostikbel@gmail.com> Fix build and distribution on the FreeBSD.

Signed-off-by: Konstantin Belousov <kostikbel@gmail.com>
/external/libunwind/tests/Makefile.am
0613d4c6800dbd47c26c90eb49883f45bd1fd77c 22-Mar-2011 Arun Sharma <asharma@fb.com> Fixup trailing whitespace

Signed-off-by: Arun Sharma <asharma@fb.com>
/external/libunwind/tests/Makefile.am
57695518b3d1bc2e024f794187ad34afc2387efc 22-Mar-2011 Arun Sharma <asharma@fb.com> Replace libuwind-elf32.la with $(LIBUNWIND_ELF)

This was needed to fix build errors on x86_64.

Signed-off-by: Arun Sharma <asharma@fb.com>
/external/libunwind/tests/Makefile.am
48703860877f3143b7709d92990a043de8fd33c8 15-Mar-2011 Zachary T Welch <zwelch@codesourcery.com> Add test of backtracing using ARM-specific tables

Uses .ARM.exidx and .ARM.extbl sections to produce a backtrace.

Signed-off-by: Ken Werner <ken.werner@linaro.org>
/external/libunwind/tests/Makefile.am
c2cc122a62e3188ebb638119238524c3f992c0c4 02-Mar-2011 Ken Werner <ken.werner@linaro.org> Explicitly add dependent shared libraries.

This adds support for linkers that do not pull in the dependent shared
libraries of libunwind-$(arch).la and libunwind-setjmp.la implicitly.

Signed-off-by: Ken Werner <ken.werner@linaro.org>
/external/libunwind/tests/Makefile.am
7e767a2838719e00951385eeab680df872dd983f 09-Nov-2010 Zachary T Welch <zwelch@codesourcery.com> Improve test LDADD settings.

Eliminates unused libraries from test program linking. Substitutes
'$(top_builddir)' for '..' to clarify library locations.

Signed-off-by: Zachary T Welch <zwelch@codesourcery.com>
/external/libunwind/tests/Makefile.am
651e9bb4fdef2f6f4dbdb4f85bee071ef72bcd25 29-Oct-2010 Zachary T Welch <zwelch@codesourcery.com> Add MAINTAINERCLEANFILES to Makefile.am files.

Ensures 'make maintainer-clean' removes files generated by autotools.

Signed-off-by: Zachary T Welch <zwelch@codesourcery.com>
/external/libunwind/tests/Makefile.am
982d590ddb778f0d301fe2e5647abd9135a2f9bc 05-Aug-2010 Arun Sharma <aruns@google.com> Add Gtest-nomalloc.c to EXTRA_DIST so we pass "make check"
/external/libunwind/tests/Makefile.am
74677edb23a4b9ae5bd61c4db3d853d875084895 20-Apr-2010 Konstantin Belousov <kostikbel@gmail.com> Reverse local change
/external/libunwind/tests/Makefile.am
ee99dbec879212406d813b1bae56b988b4ab1e00 20-Apr-2010 Konstantin Belousov <kostikbel@gmail.com> Use mincore instead of msync when available
/external/libunwind/tests/Makefile.am
c2d78041cc41e8455bd97584d5a5bb3638554632 12-Apr-2010 Arun Sharma <aruns@google.com> GCC compatibility on x86 for C++ exception handling
/external/libunwind/tests/Makefile.am
59d38aaccd53c13d962f07dbcb44b3ec5513c5ca 06-Mar-2010 Konstantin Belousov <kostik@pooma.home> Properly handle -ldl and -lutil
/external/libunwind/tests/Makefile.am
9626d66019599de925b9ad1f216388d1c890d193 25-Nov-2009 Paul Pluzhnikov <ppluzhnikov@google.com> Fix a race condition in dwarf unwinding.

Original code was accessing rs_cache memory without holding a lock
in some cases. If there was sufficient cache pressure, entry being
accessed may be overwritten by another thread, resulting in a data
race.

We now make a thread local copy of the data, before releasing the
lock. If we end up supporting UNW_CACHE_PER_THREAD properly
in the future, this memcpy should be unnecessary.
/external/libunwind/tests/Makefile.am
576b59e4b15ddf2f2d3f17036b9c2f43c7504777 15-Mar-2009 Arun Sharma <aruns@google.com> Verify that we don't call malloc when unwinding locally.
/external/libunwind/tests/Makefile.am
a1e7ee48365a76804361e891c4b4d1f13c78c20a 07-Aug-2007 Jose Flavio Aguilar Paulino <jflavio@br.ibm.com> Just a small patch to build system, it helps if you build in a power
without altivec.
/external/libunwind/tests/Makefile.am
b33021e4b2f3a92141c01eb24b98bc51a97c498d 02-Aug-2007 Jose Flavio Aguilar Paulino <jflavio@br.ibm.com> Add PPC64 support.
/external/libunwind/tests/Makefile.am
f60827dc5c8803008fd8289b79c709ac5c773105 03-May-2005 hp.com!davidm <hp.com!davidm> (LIBUNWIND_local): New macro.
(LIBUNWIND): Mention $(LIBUNWIND_local).
(test_setjmp_LDADD): Likewise.
(ia64_teset_setjmp_LDADD): Likewise.

(Logical change 1.290)
/external/libunwind/tests/Makefile.am
b4f1459444005eaed7bc14b550fb67cdc2a04c30 15-Oct-2004 hp.com!davidm <hp.com!davidm> (EXTRA_DIST): Mention run-ptrace-misc.
(check_SCRIPTS_cdep): Mention run-ptrace-misc.
(noinst_PROGRAMS_cdep): Mention test-ptrace-misc.
(Gtest_bt_SOURCES): New macro.
(Ltest_bt_SOURCES): Likewise.
(test_ptrace_misc_SOURCES)L: Likewise.

(Logical change 1.276)
/external/libunwind/tests/Makefile.am
dfa582a2dfa729bb6d1591841c1c82feb0da45a3 15-Sep-2004 hp.com!davidm <hp.com!davidm> (noinst_PROGRAMS_cdep): Move bt to...
(check_PROGRAMS_cdep): ...here as Gtest-bt/Ltest-bt.

(Logical change 1.270)
/external/libunwind/tests/Makefile.am
8f2272c097e73fd6063127745f706fed0229dd3f 31-Aug-2004 hp.com!davidm <hp.com!davidm> (noinst_PROGRAMS_arch): Move ia64-test-sig to...
(check_PROGRAMS_arch): ...here. Mention ia64-test-setjmp.
(ia64_test_setjmp_LDADD): Mention libunwind-setjmp.la.

(Logical change 1.259)
/external/libunwind/tests/Makefile.am
3eb739d290c286684ede473608c3c6b2015557f6 19-Aug-2004 homeip.net!davidm <homeip.net!davidm> (check_PROGRAMS_cdep): Move test-init-remote from check_PROGRAMS_common to here
so it doesn't get built in the REMOTE_ONLY-case.

(Logical change 1.252)
/external/libunwind/tests/Makefile.am
42a90f14d5b324e3b8cf5a98760b646d1d0706c3 18-Aug-2004 bea.com!thallgre <bea.com!thallgre> (check_PROGRAMS_common): Mention test-strerror.

(Logical change 1.245)
/external/libunwind/tests/Makefile.am
d5933d6e7424e175d04c86e4fd60cde517221f2b 18-Aug-2004 hp.com!davidm <hp.com!davidm> (check_PROGRAMS_common): Mention test-init-remote.

(Logical change 1.243)
/external/libunwind/tests/Makefile.am
86bef150e46c58d988e5cfe4f194eb2a53062d19 06-May-2004 hp.com!davidm <hp.com!davidm> (check_PROGRAMS_cdep): Mention Gia64-test-readonly and Lia64-test-readonly.
(Lia64_test_readonly_SOURCES): New macro.
(Gia64_test_readonly_SOURCES): Likewise.

(Logical change 1.231)
/external/libunwind/tests/Makefile.am
0c8baa7a79b686afef5ef6c853ff08e24085640a 05-May-2004 mostang.com!davidm <mostang.com!davidm> (EXTRA_DIST): Also mention run-check-namespace.

(Logical change 1.227)
/external/libunwind/tests/Makefile.am
5a468e30cc96f1bad3af61ec19395496e01feeea 05-May-2004 mostang.com!davidm <mostang.com!davidm> (EXTRA_DIST): Mention check-namespace.sh.in.
(check_SCRIPTS_common): Mention run-check-namespace.

(Logical change 1.225)
/external/libunwind/tests/Makefile.am
4de259b49f0162cf3cc9c86d9bc16a8de96ef693 05-May-2004 mostang.com!davidm <mostang.com!davidm> (EXTRA_DIST): Mention run-ptrade-mapper.
(test_static_link_LDFLAGS): Replace -all-static with -static.
The former doesn't work on HP-UX because libc doesn't appear
to be availabale in archive format (only libc.so is available).
(forker_LDFLAGS): Likewise.

(Logical change 1.223)
/external/libunwind/tests/Makefile.am
6cb58ac940bac939e9b8a7e998b927086df7d37d 21-Apr-2004 mostang.com!davidm <mostang.com!davidm> (check_SCRIPTS_cdep): Mention run-ptrace-mapper.
(noinst_PROGRAMS_cdep): Mention mapper.

(Logical change 1.209)
/external/libunwind/tests/Makefile.am
deb3c645a478b741d8616e1a66a3ace70df14c76 20-Apr-2004 hp.com!davidm <hp.com!davidm> Auto merged

2004/04/20 09:53:04-07:00 hp.com!davidm
(forker_LDFLAGS): Mention -all-static.

(Logical change 1.205)
/external/libunwind/tests/Makefile.am
5de80244886a901906d22114f7faf45355b8543d 01-Apr-2004 mostang.com!davidm <mostang.com!davidm> (check_PROGRAMS_cdep): Mention test-async-sig.
(test_async_sig_LDADD): New macro.

(Logical change 1.204)
/external/libunwind/tests/Makefile.am
69052ef3ea201d25307f5feda2c02ecfe33cf4da 31-Mar-2004 mostang.com!davidm <mostang.com!davidm> (Lperf_simple_LDADD): Delete.
(Gperf_simple_LDADD): Likewise.

(Logical change 1.197)
/external/libunwind/tests/Makefile.am
8e8fe5002977ea13565fa0061abdcea3437a507a 20-Mar-2004 mostang.com!davidm <mostang.com!davidm> (Lperf_simple_LDADD): Mention -lrt.
(Gperf_simple_LDADD): Likewise.

(Logical change 1.186)
/external/libunwind/tests/Makefile.am
899323c9966118a687c21c771fdbebb081d8985d 14-Feb-2004 mostang.com!davidm <mostang.com!davidm> (check_PROGRAMS_arch): Mention Gia64-test-nat and Lia64-test-nat.
(Lia64_test_nat_SOURCES): New macro.
(Gia64_test_nat_SOURCES): Likewise.

(Logical change 1.168)
/external/libunwind/tests/Makefile.am
0378f95492333acfd6b6d6acd656197fa36bdcc1 21-Jan-2004 mostang.com!davidm <mostang.com!davidm> (check_PROGRAMS_common): Mention test-static-link.
(perf): New target.
(test_static_link_SOURCES): New macro.
(test_static_link_LDFLAGS): Likewise.

(Logical change 1.157)
/external/libunwind/tests/Makefile.am
32f19d0e09def03b25de038315a92ff032e1cdee 03-Jan-2004 hp.com!davidm <hp.com!davidm> (test_ptrace_LDADD): New macro.

(Logical change 1.151)
/external/libunwind/tests/Makefile.am
d154b86e841cc0b0e920b1d0dc40010f005a679e 05-Dec-2003 hp.com!davidm <hp.com!davidm> (check_PROGRAMS_cdep): Mention test-mem.

(Logical change 1.137)
/external/libunwind/tests/Makefile.am
00f05d607bea83a253181e4c460c8b7a82d7d2c6 20-Nov-2003 mostang.com!davidm <mostang.com!davidm> (check_PROGRAMS_cdep): Mention Gtest-concurrent and Ltest-concurrent.
(Ltest_concurrent_LDADD): New macro.
(Gtest_concurrent_LDADD): Ditto.

(Logical change 1.114)
/external/libunwind/tests/Makefile.am
a237717fd749d3402b5d95a8603c25d02d782f2f 25-Sep-2003 hp.com!davidm <hp.com!davidm> (check_PROGRAMS_cdep): Move Gtest-init, Ltest-init, and
test-flush-cache to here from check_PROGRAMS_common.
They cannot be compiled/used for REMOTE_ONLY configurations.

(Logical change 1.104)
/external/libunwind/tests/Makefile.am
e1bdc44e0f4cea85c1e72b50bd457c8a0f186bce 24-Sep-2003 mostang.com!davidm <mostang.com!davidm> (noinst_PROGRAMS_cdep): Add Gperf-simple and Lperf-simple.

(Logical change 1.98)
/external/libunwind/tests/Makefile.am
29358553a96c99441e8e9d51cd55a2f3e3197174 19-Sep-2003 mostang.com!davidm <mostang.com!davidm> (check_PROGRAMS_common): Mention test-flush-cache.

(Logical change 1.96)
/external/libunwind/tests/Makefile.am
6f01170a2649d49926f06562dc098e5a7f57aba0 18-Sep-2003 mostang.com!davidm <mostang.com!davidm> (check_PROGRAMS_common): Mention test-proc-info.

(Logical change 1.95)
/external/libunwind/tests/Makefile.am
9fe5e68f40f5a463c69e51436326d6c4810c12d7 28-Mar-2003 mostang.com!davidm <mostang.com!davidm> (check_PROGRAMS_common): Mention Gtest-init and Ltest-init.
(noinst_PROGRAMS_cdep): Remove test-init.
(Gtest_init_SOURCES): New macro.
(Ltest_init_SOURCES): Ditto.

(Logical change 1.70)
/external/libunwind/tests/Makefile.am
0231ae5a6f9a5096cf7dcb86f73cd92efaa467d7 27-Mar-2003 mostang.com!davidm <mostang.com!davidm> (ia64_test_dyn1_SOURCES): Mention flush-cache.S.
(Gtest_dyn1_SOURCES): Ditto.
(Ltest_dyn1_SOURCES): Ditto.

(Logical change 1.68)
/external/libunwind/tests/Makefile.am
623c4cb79a2d03569675589c4f9d7e340d51f72e 06-Mar-2003 mostang.com!davidm <mostang.com!davidm> (EXTRA_DIST): New macro. Mention run-ia64-test-dyn1.
(Lia64_test_stack_SOURCES): Mention ia64-test-stack.h.
(Gia64_test_stack_SOURCES): Ditto.
(Lia64_test_rbs_SOURCES): Mention ia64-test-rbs.h.
(Gia64_test_rbs_SOURCES): Ditto.

(Logical change 1.59)
/external/libunwind/tests/Makefile.am
405a7d8adfac2e5769c4ba73b13bb78abbee9989 27-Feb-2003 mostang.com!davidm <mostang.com!davidm> (check_SCRIPTS_cdep): New macro
(check_PROGRAMS_cdep): Ditto
(check_SCRIPTS_arch): Ditto.
(check_PROGRAMS_arch): Ditto.
(check_SCRIPTS): Ditto.
(check_PROGRAMS): Ditto.
(TESTS): Define in terms of check_PROGRAMS and check_SCRIPTS.

(Logical change 1.56)
/external/libunwind/tests/Makefile.am
9f48ae3751eab269f9a7e3ec1a88950b9ac09a53 26-Feb-2003 hp.com!davidm <hp.com!davidm> (TESTS_arch): Add ia64-test-dyn1.
(ia64_test_dyn1_SOURCES): New macro.

(Logical change 1.55)
/external/libunwind/tests/Makefile.am
1d36e973336c599ae49007a1e4977c9236df347a 22-Feb-2003 hp.com!davidm <hp.com!davidm> (TESTS_arch): Replace ia64-test-rbs with Gia64-test-rbs and
Lia64-test-rbs.
(TESTS_cdep): Replace test-exc, test-resume-sig, and test-dyn1 with
G (generic) and L (local-only) variants.
(Lia64_test_rbs_SOURCES): Rename from ia64_test_rbs_SOURCES.
(Gia64_test_rbs_SOURCES): New macro.
(Lia64_test_stack_SOURCES): Rename from ia64_test_stack_SOURCES.
(Gia64_test_stack_SOURCES): New macro.

(Logical change 1.53)
/external/libunwind/tests/Makefile.am
44a825a3d5e602f80ecbe072185cc95351891758 15-Feb-2003 mostang.com!davidm <mostang.com!davidm> (TEST_arch): Put ia64-test-stack first.
(TESTS): Put $(TESTS_arch) first.

(Logical change 1.49)
/external/libunwind/tests/Makefile.am
508348e6931c64e2ca1522ba9675f935f3c73f3b 14-Feb-2003 mostang.com!davidm <mostang.com!davidm> (TESTS_arch): Mention ia64-test-rbs.
(ia64_test_rbs_SOURCES): New macro.

(Logical change 1.47)
/external/libunwind/tests/Makefile.am
5db393915c23fe9f3410479847ebc2d23571970e 08-Feb-2003 mostang.com!davidm <mostang.com!davidm> (TESTS_cdep): Add test-setjmp.
(test_setjmp_LDADD): New macro.

(Logical change 1.45)
/external/libunwind/tests/Makefile.am
21e86c6cbad24358a410f2acdab14454275455d8 28-Jan-2003 hp.com!davidm <hp.com!davidm> (TESTS_cdep): Add test-ptrace.c.

(Logical change 1.43)
/external/libunwind/tests/Makefile.am
282413e6abbbd29d2d88d41a6ced0147fd2f4d54 23-Jan-2003 mostang.com!davidm <mostang.com!davidm> (TESTS_cdep): New macro for configuration-depedent tests.
(noinst_PROGRAMS_cdep): New macro for config-dependent noinst-programs.
(TESTS_arch): New macro for architecture-specific tests.
(TESTS): New macro, so we can run "make check".
(check_PROGRAMS): New macro.

(Logical change 1.42)
/external/libunwind/tests/Makefile.am
57df2a2981646c637ec44a570a74feb12633fb8b 23-Jan-2003 mostang.com!davidm <mostang.com!davidm> (noinst_PROGRAMS_arch): Mention ia64-test-stack.
(ia64_test_stack_SOURCES): New macro.

(Logical change 1.41)
/external/libunwind/tests/Makefile.am
15ea4d442e2ef351ff1a34d6c3ef28979184d0d1 21-Jan-2003 mostang.com!davidm <mostang.com!davidm> (noinst_PROGRAMS): Mentio ntest-resume-sig.

(Logical change 1.40)
/external/libunwind/tests/Makefile.am
d48c437782ab286cb9a5120005d0dd40cba9ecb1 03-Dec-2002 mostang.com!davidm <mostang.com!davidm> (noinst_PROGRAMS): Mention test-dyn1.

(Logical change 1.29)
/external/libunwind/tests/Makefile.am
e0ac536efcbb76131cef2b4fbe2030af2e0ff660 09-Nov-2002 mostang.com!davidm <mostang.com!davidm> (noinst_PROGRAMS): Mention test-init and test-varargs.

(Logical change 1.21)
/external/libunwind/tests/Makefile.am
053cda26f27fad06a515cd73f3806c0c913c2649 25-Apr-2002 mostang.com!davidm <mostang.com!davidm> (noinst_PROGRAMS_arch): New macro to get "sig" built when the target is ia64.
(noinst_PROGRAMS): Mention $(noinst_PROGRAMS_arch).
(LDADD): Link against architecture-specific name, because symlinks don't exist yet
when this directory gets built.

(Logical change 1.18)
/external/libunwind/tests/Makefile.am
0f1a0c4b4e234771d75064f14de455fe24a5661a 03-Apr-2002 hp.com!davidm <hp.com!davidm> (AM_CPPFLAGS): Define.

(Logical change 1.10)
/external/libunwind/tests/Makefile.am
95ce9146a75cc7e572842af61519fed591264a38 23-Feb-2002 mostang.com!davidm <mostang.com!davidm> Initial revision
/external/libunwind/tests/Makefile.am
1a9fe6168df55990771e82024273d0992ad6a706 23-Feb-2002 mostang.com!davidm <mostang.com!davidm> (Logical change 1.7)
/external/libunwind/tests/Makefile.am